Update openapi generator version

This commit is contained in:
2025-06-03 17:20:22 -03:00
parent 4ce994a111
commit 6c6221a436
107 changed files with 2874 additions and 2412 deletions

View File

@ -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}};
};
}