DoclerLabs / api-client-generator

API client generator is a console application capable of generating an API client based on OpenAPI(Swagger) specification.
MIT License
31 stars 19 forks source link

Fix nullable with all of #76

Closed vsouz4 closed 2 years ago

vsouz4 commented 2 years ago
      allOf:
        - $ref: '#/components/schemas/MemberPaymentMethod'
        - type: object
          nullable: true

something like this wasn't being parsed correctly (allOf was just merging properties, not the field attributes, so I added the nullable check at least to support this)