allowUnicodeIdentifiers |
boolean, toggles whether unicode identifiers are allowed in names or not, default is false |
|
false |
apiNamePrefix |
Prefix that will be appended to all API names ('tags'). Default: empty string. e.g. Pet => Pet. |
|
null |
disallowAdditionalPropertiesIfNotPresent |
If false, the 'additionalProperties' implementation (set to true by default) is compliant with the OAS and JSON schema specifications. If true (default), keep the old (incorrect) behaviour that 'additionalProperties' is set to false by default. |
- false
- The 'additionalProperties' implementation is compliant with the OAS and JSON schema specifications.
- true
- Keep the old (incorrect) behaviour that 'additionalProperties' is set to false by default.
|
true |
ensureUniqueParams |
Whether to ensure parameter names are unique in an operation (rename parameters that are not). |
|
true |
enumUnknownDefaultCase |
If the server adds new enum cases, that are unknown by an old spec/client, the client will fail to parse the network response.With this option enabled, each enum will have a new case, 'unknown_default_open_api', so that when the server sends an enum case that is not known by the client/spec, they can safely fallback to this case. |
- false
- No changes to the enum's are made, this is the default option.
- true
- With this option enabled, each enum will have a new case, 'unknown_default_open_api', so that when the enum case sent by the server is not known by the client/spec, can safely be decoded to this case.
|
false |
generateModelAdditionalProperties |
Generate model additional properties (default: true) |
|
true |
hashableModels |
Make hashable models (default: true) |
|
true |
hideGenerationTimestamp |
Hides the generation timestamp when files are generated. |
|
true |
legacyDiscriminatorBehavior |
Set to false for generators with better support for discriminators. (Python, Java, Go, PowerShell, C# have this enabled by default). |
- true
- The mapping in the discriminator includes descendent schemas that allOf inherit from self and the discriminator mapping schemas in the OAS document.
- false
- The mapping in the discriminator includes any descendent schemas that allOf inherit from self, any oneOf schemas, any anyOf schemas, any x-discriminator-values, and the discriminator mapping schemas in the OAS document AND Codegen validates that oneOf and anyOf schemas contain the required discriminator and throws an error if the discriminator is missing.
|
true |
library |
Library template (sub-template) to use |
- urlsession
- [DEFAULT] HTTP client: URLSession
- alamofire
- HTTP client: Alamofire
- vapor
- HTTP client: Vapor
|
urlsession |
mapFileBinaryToData |
[WARNING] This option will be removed and enabled by default in the future once we've enhanced the code to work with Data in all the different situations. Map File and Binary to Data (default: false) |
|
false |
nonPublicApi |
Generates code with reduced access modifiers; allows embedding elsewhere without exposing non-public API calls to consumers.(default: false) |
|
null |
objcCompatible |
Add additional properties and methods for Objective-C compatibility (default: false) |
|
null |
oneOfUnknownDefaultCase |
Add unknownDefault case to oneOf enum (default: false) |
|
false |
podAuthors |
Authors used for Podspec |
|
null |
podDescription |
Description used for Podspec |
|
null |
podDocumentationURL |
Documentation URL used for Podspec |
|
null |
podHomepage |
Homepage used for Podspec |
|
null |
podLicense |
License used for Podspec |
|
null |
podScreenshots |
Screenshots used for Podspec |
|
null |
podSocialMediaURL |
Social Media URL used for Podspec |
|
null |
podSource |
Source information used for Podspec |
|
null |
podSummary |
Summary used for Podspec |
|
null |
podVersion |
Version used for Podspec |
|
null |
prependFormOrBodyParameters |
Add form or body parameters to the beginning of the parameter list. |
|
false |
projectName |
Project name in Xcode |
|
null |
readonlyProperties |
Make properties readonly (default: false) |
|
null |
responseAs |
Optionally use libraries to manage response. Currently PromiseKit, RxSwift, Result, Combine, AsyncAwait are available. |
|
null |
sortModelPropertiesByRequiredFlag |
Sort model properties to place required parameters before optional parameters. |
|
true |
sortParamsByRequiredFlag |
Sort method arguments to place required parameters before optional parameters. |
|
true |
swiftPackagePath |
Set a custom source path instead of OpenAPIClient/Classes/OpenAPIs. |
|
null |
swiftUseApiNamespace |
Flag to make all the API classes inner-class of {{projectName}}API |
|
null |
useBacktickEscapes |
Escape reserved words using backticks (default: false) |
|
false |
useClasses |
Use final classes for models instead of structs (default: false) |
|
false |
useCustomDateWithoutTime |
Uses a custom type to decode and encode dates without time information to support OpenAPIs date format (default: false) |
|
false |
useJsonEncodable |
Make models conform to JSONEncodable protocol (default: true) |
|
true |
useSPMFileStructure |
Use SPM file structure and set the source path to Sources/{{projectName}} (default: false). |
|
null |
validatable |
Make validation rules and validator for model properies (default: true) |
|
true |