We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lazy val commons = RootProject(file("commons")) lazy val web = ().dependsOn(commons)
import com.commons.model.enum.PlatformType case class Channel( platformType: PlatformType.Value, meta: String )
### # summary: Get channel # responses: # 200: # schema: # $ref: '#/definitions/models.Channel' ###
They output looks like this:
"channel": { "meta": "some string" },
So it skips the imported model. The output should look like this:
"channel": { "meta": "some string" "platformType": "some type" }
The text was updated successfully, but these errors were encountered:
+1 - the Model view seems OK but the value returned as the "Example Value" discards objects that are imported.
Sorry, something went wrong.
+1
@rafaelkyrdan @etspaceman @luben93 We are currently reviewing it. It may take some time, but we plan to address it.
No branches or pull requests
Sbt
Model
Routes
They output looks like this:
So it skips the imported model. The output should look like this:
The text was updated successfully, but these errors were encountered: