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
this open-api spech part:
"CollectionCalendarDto": { "type": "object", "properties": { "calendar": { "type": "object", "additionalProperties": { "type": "array", "items": { "type": "integer" } } },
generates correctly the property
Map<String, List<int>> calendar;
but the fromJson method is wrong:
fromJson
return CollectionCalendarDto( calendar: json[r'calendar'] == null ? const {} : mapCastOfType<String, List>(json, r'calendar'), mostWornWatch: WatchTinyDto.fromJson(json[r'most_worn_watch']), );
the int is missing and as this is a required type it should have a trailing !
int
!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
this open-api spech part:
generates correctly the property
but the
fromJson
method is wrong:the
int
is missing and as this is a required type it should have a trailing!
openapi-generator version
OpenAPI declaration file content or url
Generation Details
Steps to reproduce
Related issues/PRs
Suggest a fix
The text was updated successfully, but these errors were encountered: