forked from loafle/openapi-generator-original
138 lines
3.4 KiB
C++
138 lines
3.4 KiB
C++
/**
|
|
* Swagger Petstore
|
|
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator 3.0.0-SNAPSHOT.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/*
|
|
* User.h
|
|
*
|
|
* A User who is purchasing from the pet store
|
|
*/
|
|
|
|
#ifndef IO_SWAGGER_CLIENT_MODEL_User_H_
|
|
#define IO_SWAGGER_CLIENT_MODEL_User_H_
|
|
|
|
|
|
#include "../ModelBase.h"
|
|
|
|
#include <cpprest/details/basic_types.h>
|
|
|
|
namespace io {
|
|
namespace swagger {
|
|
namespace client {
|
|
namespace model {
|
|
|
|
/// <summary>
|
|
/// A User who is purchasing from the pet store
|
|
/// </summary>
|
|
class User
|
|
: public ModelBase
|
|
{
|
|
public:
|
|
User();
|
|
virtual ~User();
|
|
|
|
/////////////////////////////////////////////
|
|
/// ModelBase overrides
|
|
|
|
void validate() override;
|
|
|
|
web::json::value toJson() const override;
|
|
void fromJson(web::json::value& json) override;
|
|
|
|
void toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) const override;
|
|
void fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) override;
|
|
|
|
/////////////////////////////////////////////
|
|
/// User members
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
int64_t getId() const;
|
|
bool idIsSet() const;
|
|
void unsetId();
|
|
void setId(int64_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getUsername() const;
|
|
bool usernameIsSet() const;
|
|
void unsetUsername();
|
|
void setUsername(utility::string_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getFirstName() const;
|
|
bool firstNameIsSet() const;
|
|
void unsetFirstName();
|
|
void setFirstName(utility::string_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getLastName() const;
|
|
bool lastNameIsSet() const;
|
|
void unsetLastName();
|
|
void setLastName(utility::string_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getEmail() const;
|
|
bool emailIsSet() const;
|
|
void unsetEmail();
|
|
void setEmail(utility::string_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getPassword() const;
|
|
bool passwordIsSet() const;
|
|
void unsetPassword();
|
|
void setPassword(utility::string_t value);
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
utility::string_t getPhone() const;
|
|
bool phoneIsSet() const;
|
|
void unsetPhone();
|
|
void setPhone(utility::string_t value);
|
|
/// <summary>
|
|
/// User Status
|
|
/// </summary>
|
|
int32_t getUserStatus() const;
|
|
bool userStatusIsSet() const;
|
|
void unsetUserStatus();
|
|
void setUserStatus(int32_t value);
|
|
|
|
protected:
|
|
int64_t m_Id;
|
|
bool m_IdIsSet;
|
|
utility::string_t m_Username;
|
|
bool m_UsernameIsSet;
|
|
utility::string_t m_FirstName;
|
|
bool m_FirstNameIsSet;
|
|
utility::string_t m_LastName;
|
|
bool m_LastNameIsSet;
|
|
utility::string_t m_Email;
|
|
bool m_EmailIsSet;
|
|
utility::string_t m_Password;
|
|
bool m_PasswordIsSet;
|
|
utility::string_t m_Phone;
|
|
bool m_PhoneIsSet;
|
|
int32_t m_UserStatus;
|
|
bool m_UserStatusIsSet;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* IO_SWAGGER_CLIENT_MODEL_User_H_ */
|