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
Pet:
type: objectrequired:
- name
- photoUrlsproperties:
id:
type: integerformat: int64name:
type: stringexample: doggiestatus:
type: stringdescription: pet status in the storeenum:
- available
- pending
- soldpart:
type: arrayitems:
oneOf:
- $ref: "#/components/schemas/Dog"
- $ref: "#/components/schemas/Cat"Cat:
allOf:
- $ref: '#/components/schemas/Pet'
- type: objectproperties:
hunts:
type: booleanage:
type: integer
Generates an output with wrong extended properties in the composed one:
publicPet(long? id =default(long?), string name =default(string), StatusEnum? status =default(StatusEnum?), List<OneOfPetPartItems> part =default(List<OneOfPetPartItems>))
publicCat(bool? hunts =default(bool?), int? age =default(int?), long? id =default(long?), string name =default(string), StatusEnum? status =default(StatusEnum?), List<Object> part =default(List<Object>)):base(id,name,status,part)
this makes that compile errors appears in build project process.
The text was updated successfully, but these errors were encountered:
Having:
Generates an output with wrong extended properties in the composed one:
this makes that compile errors appears in build project process.
The text was updated successfully, but these errors were encountered: