/** * OpenAPI Petstore * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. * * The version of the OpenAPI document: 1.0.0 * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Representing a Server Variable for server URL template substitution. */ #ifndef PFX_SERVERVARIABLE_H #define PFX_SERVERVARIABLE_H #include #include namespace test_namespace { class PFXServerVariable { public: /** * @param description A description for the server variable. * @param defaultValue The default value to use for substitution. * @param enumValues An enumeration of string values to be used if the substitution options are from a limited set. */ PFXServerVariable(const QString &description, const QString &defaultValue, const QSet &enumValues) : _defaultValue(defaultValue), _description(description), _enumValues(enumValues){} PFXServerVariable(){} ~PFXServerVariable(){} int setDefaultValue(const QString& value){ if( _enumValues.contains(value)){ _defaultValue = value; return 0; } return -2; } QString getDefaultValue(){return _defaultValue;} QSet getEnumValues(){return _enumValues;} QString _defaultValue; QString _description; QSet _enumValues; }; } // namespace test_namespace #endif // PFX_SERVERVARIABLE_H