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
/* GET /v1/test tests Response 200: $ref: bool */
throws could not parse response 200 params: GetReference: could not find type "bool" in package ...
could not parse response 200 params: GetReference: could not find type "bool" in package ...
then tried:
type TestResponse bool /* GET /v1/test tests Response 200: $ref: TestResponse */
and throws: could not parse response 200 params: GetReference: TestResponse is not a struct or interface but a *ast.Ident
could not parse response 200 params: GetReference: TestResponse is not a struct or interface but a *ast.Ident
The text was updated successfully, but these errors were encountered:
Yeah, only structs are supported at the moment. It assumes the response is a JS/JSON object ({..}).
{..}
Why? Because that's what all our APIs return :-)
Sorry, something went wrong.
No branches or pull requests
throws
could not parse response 200 params: GetReference: could not find type "bool" in package ...
then tried:
and throws:
could not parse response 200 params: GetReference: TestResponse is not a struct or interface but a *ast.Ident
The text was updated successfully, but these errors were encountered: