Bug Report Checklist
Description
The JSON/YAML says:
createdAt:
description: The date the Secret entity was created.
format: date-time
readOnly: true
type: string
The go struct looks like:
// The date the Resource entity was created.
CreatedAt time.Time `json:"createdAt"`
And the MarshalJSON function:
if true {
toSerialize["createdAt"] = o.CreatedAt
}
openapi-generator version
The one that comes from docker run openapitools/openapi-generator-cli
Bug Report Checklist
Description
The JSON/YAML says:
The go struct looks like:
And the
MarshalJSONfunction:openapi-generator version
The one that comes from
docker run openapitools/openapi-generator-cli