allowUnicodeIdentifiers | boolean, toggles whether unicode identifiers are allowed in names or not, default is false | | false |
apiModulePrefix | The prefix of the generated ApiModule. | | null |
ensureUniqueParams | Whether to ensure parameter names are unique in an operation (rename parameters that are not). | | true |
fileNaming | Naming convention for the output files: 'camelCase', 'kebab-case'. | | camelCase |
modelFileSuffix | The suffix of the file of the generated model (model<suffix>.ts). | | null |
modelPropertyNaming | Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name | | camelCase |
modelSuffix | The suffix of the generated model. | | null |
ngVersion | The version of Angular. | | 8.0.0 |
npmName | The name under which you want to publish generated npm package. Required to generate a full package | | null |
npmRepository | Use this property to set an url your private npmRepo in the package.json | | null |
npmVersion | The version of your npm package. If not provided, using the version from the OpenAPI specification file. | | 1.0.0 |
prependFormOrBodyParameters | Add form or body parameters to the beginning of the parameter list. | | false |
providedInRoot | Use this property to provide Injectables in root (it is only valid in angular version greater or equal to 6.0.0). | | false |
serviceFileSuffix | The suffix of the file of the generated service (service<suffix>.ts). | | .service |
serviceSuffix | The suffix of the generated service. | | Service |
snapshot | When setting this property to true, the version will be suffixed with -SNAPSHOT.yyyyMMddHHmm | | false |
sortModelPropertiesByRequiredFlag | Sort model properties to place required parameters before optional parameters. | | true |
sortParamsByRequiredFlag | Sort method arguments to place required parameters before optional parameters. | | true |
stringEnums | Generate string enums instead of objects for enum values. | | false |
supportsES6 | Generate code that conforms to ES6. | | false |
taggedUnions | Use discriminators to create tagged unions instead of extending interfaces. | | false |
useSingleRequestParameter | Setting this property to true will generate functions with a single argument containing all API endpoint parameters instead of one argument per parameter. | | false |
withInterfaces | Setting this property to true will generate interfaces next to the default class implementations. | | false |