mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-16 03:34:20 +00:00
Generate project with openapi generator
This commit is contained in:
65
include/tribufu++/model/GroupRank.h
Normal file
65
include/tribufu++/model/GroupRank.h
Normal file
@ -0,0 +1,65 @@
|
||||
/**
|
||||
* 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.12.0.
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
/*
|
||||
* GroupRank.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TRIBUFU_MODELS_GroupRank_H_
|
||||
#define TRIBUFU_MODELS_GroupRank_H_
|
||||
|
||||
|
||||
#include "tribufu++/ModelBase.h"
|
||||
|
||||
|
||||
namespace tribufu {
|
||||
namespace models {
|
||||
|
||||
|
||||
class GroupRank
|
||||
: public ModelBase
|
||||
{
|
||||
public:
|
||||
GroupRank();
|
||||
virtual ~GroupRank();
|
||||
|
||||
/////////////////////////////////////////////
|
||||
/// 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 eGroupRank
|
||||
{
|
||||
GroupRank_MEMBER,
|
||||
GroupRank_LEADER,
|
||||
GroupRank_OWNER,
|
||||
};
|
||||
|
||||
eGroupRank getValue() const;
|
||||
void setValue(eGroupRank const value);
|
||||
|
||||
protected:
|
||||
eGroupRank m_value;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* TRIBUFU_MODELS_GroupRank_H_ */
|
Reference in New Issue
Block a user