mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 20:04:18 +00:00
187 lines
5.2 KiB
C++
187 lines
5.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.
|
|
*/
|
|
|
|
/*
|
|
* Group.h
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef TRIBUFU_MODELS_Group_H_
|
|
#define TRIBUFU_MODELS_Group_H_
|
|
|
|
#include "tribufu++/ModelBase.h"
|
|
|
|
#include <cpprest/details/basic_types.h>
|
|
|
|
namespace tribufu
|
|
{
|
|
namespace models
|
|
{
|
|
|
|
class Group : public ModelBase
|
|
{
|
|
public:
|
|
Group();
|
|
virtual ~Group();
|
|
|
|
/////////////////////////////////////////////
|
|
/// 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;
|
|
|
|
/////////////////////////////////////////////
|
|
/// Group members
|
|
|
|
utility::string_t getId() const;
|
|
bool idIsSet() const;
|
|
void unsetId();
|
|
void setId(const utility::string_t &value);
|
|
|
|
utility::string_t getUuid() const;
|
|
bool uuidIsSet() const;
|
|
void unsetUuid();
|
|
void setUuid(const utility::string_t &value);
|
|
|
|
utility::string_t getName() const;
|
|
bool nameIsSet() const;
|
|
void unsetName();
|
|
void setName(const utility::string_t &value);
|
|
|
|
utility::string_t getTag() const;
|
|
bool tagIsSet() const;
|
|
void unsetTag();
|
|
void setTag(const utility::string_t &value);
|
|
|
|
utility::string_t getDescription() const;
|
|
bool descriptionIsSet() const;
|
|
void unsetDescription();
|
|
void setDescription(const utility::string_t &value);
|
|
|
|
int32_t getType() const;
|
|
bool typeIsSet() const;
|
|
void unsetType();
|
|
void setType(int32_t value);
|
|
|
|
int32_t getPrivacy() const;
|
|
bool privacyIsSet() const;
|
|
void unsetPrivacy();
|
|
void setPrivacy(int32_t value);
|
|
|
|
utility::string_t getOwnerId() const;
|
|
bool ownerIdIsSet() const;
|
|
void unsetOwner_id();
|
|
void setOwnerId(const utility::string_t &value);
|
|
|
|
bool isVerified() const;
|
|
bool verifiedIsSet() const;
|
|
void unsetVerified();
|
|
void setVerified(bool value);
|
|
|
|
utility::string_t getPhotoUrl() const;
|
|
bool photoUrlIsSet() const;
|
|
void unsetPhoto_url();
|
|
void setPhotoUrl(const utility::string_t &value);
|
|
|
|
utility::string_t getBannerUrl() const;
|
|
bool bannerUrlIsSet() const;
|
|
void unsetBanner_url();
|
|
void setBannerUrl(const utility::string_t &value);
|
|
|
|
int32_t getMemberCount() const;
|
|
bool memberCountIsSet() const;
|
|
void unsetMember_count();
|
|
void setMemberCount(int32_t value);
|
|
|
|
int32_t getFollowerCount() const;
|
|
bool followerCountIsSet() const;
|
|
void unsetFollower_count();
|
|
void setFollowerCount(int32_t value);
|
|
|
|
int32_t getViewCount() const;
|
|
bool viewCountIsSet() const;
|
|
void unsetView_count();
|
|
void setViewCount(int32_t value);
|
|
|
|
utility::datetime getCreated() const;
|
|
bool createdIsSet() const;
|
|
void unsetCreated();
|
|
void setCreated(const utility::datetime &value);
|
|
|
|
utility::datetime getUpdated() const;
|
|
bool updatedIsSet() const;
|
|
void unsetUpdated();
|
|
void setUpdated(const utility::datetime &value);
|
|
|
|
protected:
|
|
utility::string_t m_Id;
|
|
bool m_IdIsSet;
|
|
|
|
utility::string_t m_Uuid;
|
|
bool m_UuidIsSet;
|
|
|
|
utility::string_t m_Name;
|
|
bool m_NameIsSet;
|
|
|
|
utility::string_t m_Tag;
|
|
bool m_TagIsSet;
|
|
|
|
utility::string_t m_Description;
|
|
bool m_DescriptionIsSet;
|
|
|
|
int32_t m_Type;
|
|
bool m_TypeIsSet;
|
|
|
|
int32_t m_Privacy;
|
|
bool m_PrivacyIsSet;
|
|
|
|
utility::string_t m_Owner_id;
|
|
bool m_Owner_idIsSet;
|
|
|
|
bool m_Verified;
|
|
bool m_VerifiedIsSet;
|
|
|
|
utility::string_t m_Photo_url;
|
|
bool m_Photo_urlIsSet;
|
|
|
|
utility::string_t m_Banner_url;
|
|
bool m_Banner_urlIsSet;
|
|
|
|
int32_t m_Member_count;
|
|
bool m_Member_countIsSet;
|
|
|
|
int32_t m_Follower_count;
|
|
bool m_Follower_countIsSet;
|
|
|
|
int32_t m_View_count;
|
|
bool m_View_countIsSet;
|
|
|
|
utility::datetime m_Created;
|
|
bool m_CreatedIsSet;
|
|
|
|
utility::datetime m_Updated;
|
|
bool m_UpdatedIsSet;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* TRIBUFU_MODELS_Group_H_ */
|