mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-16 13:14:19 +00:00
Update openapi generator version
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI-Generator 7.12.0.
|
||||
* NOTE: This class is auto generated by OpenAPI-Generator 7.14.0-SNAPSHOT.
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
@ -30,6 +30,12 @@ namespace tribufu
|
||||
{
|
||||
public:
|
||||
CodeChallengeMethod();
|
||||
CodeChallengeMethod(utility::string_t str);
|
||||
operator utility::string_t() const
|
||||
{
|
||||
return enumToStrMap.at(getValue());
|
||||
}
|
||||
|
||||
virtual ~CodeChallengeMethod();
|
||||
|
||||
/////////////////////////////////////////////
|
||||
@ -56,6 +62,12 @@ namespace tribufu
|
||||
|
||||
protected:
|
||||
eCodeChallengeMethod m_value;
|
||||
std::map<eCodeChallengeMethod, utility::string_t> enumToStrMap = {
|
||||
{eCodeChallengeMethod::CodeChallengeMethod_PLAIN, "PLAIN"},
|
||||
{eCodeChallengeMethod::CodeChallengeMethod_S256, "S256"}};
|
||||
std::map<utility::string_t, eCodeChallengeMethod> strToEnumMap = {
|
||||
{"PLAIN", eCodeChallengeMethod::CodeChallengeMethod_PLAIN},
|
||||
{"S256", eCodeChallengeMethod::CodeChallengeMethod_S256}};
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user