Files
sdk-cpp/include/tribufu++/model/CodeChallengeMethod.h

77 lines
2.2 KiB
C++

/**
* Tribufu API
* REST API to access Tribufu services.
*
* The version of the OpenAPI document: 1.1.0
* Contact: contact@tribufu.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 7.14.0-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* CodeChallengeMethod.h
*
*
*/
#ifndef TRIBUFU_MODELS_CodeChallengeMethod_H_
#define TRIBUFU_MODELS_CodeChallengeMethod_H_
#include "tribufu++/ModelBase.h"
namespace tribufu
{
namespace models
{
class CodeChallengeMethod : public ModelBase
{
public:
CodeChallengeMethod();
CodeChallengeMethod(utility::string_t str);
operator utility::string_t() const
{
return enumToStrMap.at(getValue());
}
virtual ~CodeChallengeMethod();
/////////////////////////////////////////////
/// ModelBase overrides
void validate() override;
web::json::value toJson() const override;
bool fromJson(const web::json::value &json) override;
void toMultipart(std::shared_ptr<MultipartFormData> multipart,
const utility::string_t &namePrefix) const override;
bool fromMultiPart(std::shared_ptr<MultipartFormData> multipart,
const utility::string_t &namePrefix) override;
enum class eCodeChallengeMethod
{
CodeChallengeMethod_PLAIN,
CodeChallengeMethod_S256,
};
eCodeChallengeMethod getValue() const;
void setValue(eCodeChallengeMethod const value);
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}};
};
}
}
#endif /* TRIBUFU_MODELS_CodeChallengeMethod_H_ */