You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a field properties which is of type Dict{String,String}. So it processes the type field in additionalProperties to detect String, but it doesn't process the nullable field. So if I have a property with a null value, it throws an error on parsing. I was able to fix it by changing the type to Dict{String,Union{Nothing, String}}, so maybe there is a way to update generator to process the nullable option
Hi, I'm trying to generate julia client for hubspot api, and there is such a component:
So openapi-generator generate such model:
There is a field
properties
which is of typeDict{String,String}
. So it processes thetype
field inadditionalProperties
to detectString
, but it doesn't process thenullable
field. So if I have a property with a null value, it throws an error on parsing. I was able to fix it by changing the type toDict{String,Union{Nothing, String}}
, so maybe there is a way to update generator to process thenullable
optionEdit:
Full openapi_specification: https://api.hubspot.com/api-catalog-public/v1/apis/crm/v3/objects/deals
The text was updated successfully, but these errors were encountered: