mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-01 16:03:41 +00:00
* Salesforce Apex support * typo in function name * comments for clarification * DoubleProperty and FloatProperty are both DecimalProperty * test models with default and provided example property values * adding some more default example values
11 lines
347 B
Plaintext
11 lines
347 B
Plaintext
/**
|
|
* {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{{description}}}{{/description}}
|
|
*/
|
|
public enum {{#datatypeWithEnum}}{{{.}}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} {
|
|
{{#allowableValues}}
|
|
{{#enumVars}}
|
|
{{name}}{{^-last}},{{/-last}}
|
|
{{/enumVars}}
|
|
{{/allowableValues}}
|
|
}
|