/* * User.h * * A User who is purchasing from the pet store */ #ifndef _User_H_ #define _User_H_ #include #include "Object.h" /** \defgroup Models Data Structures for API * Classes containing all the Data Structures needed for calling/returned by API endpoints * */ namespace Tizen { namespace ArtikCloud { /*! \brief A User who is purchasing from the pet store * * \ingroup Models * */ class User : public Object { public: /*! \brief Constructor. */ User(); User(char* str); /*! \brief Destructor. */ virtual ~User(); /*! \brief Retrieve a string JSON representation of this class. */ char* toJson(); /*! \brief Fills in members of this class from JSON string representing it. */ void fromJson(char* jsonStr); /*! \brief Get */ long long getId(); /*! \brief Set */ void setId(long long id); /*! \brief Get */ std::string getUsername(); /*! \brief Set */ void setUsername(std::string username); /*! \brief Get */ std::string getFirstName(); /*! \brief Set */ void setFirstName(std::string firstName); /*! \brief Get */ std::string getLastName(); /*! \brief Set */ void setLastName(std::string lastName); /*! \brief Get */ std::string getEmail(); /*! \brief Set */ void setEmail(std::string email); /*! \brief Get */ std::string getPassword(); /*! \brief Set */ void setPassword(std::string password); /*! \brief Get */ std::string getPhone(); /*! \brief Set */ void setPhone(std::string phone); /*! \brief Get User Status */ int getUserStatus(); /*! \brief Set User Status */ void setUserStatus(int userStatus); private: long long id; std::string username; std::string firstName; std::string lastName; std::string email; std::string password; std::string phone; int userStatus; void __init(); void __cleanup(); }; } } #endif /* _User_H_ */