/** * OpenAPI Petstore * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. * * OpenAPI spec version: 1.0.0 * * NOTE: This class is auto generated by OpenAPI-Generator 3.3.4. * https://openapi-generator.tech * Do not edit the class manually. */ /* * Pet.h * * A pet for sale in the pet store */ #ifndef ORG_OPENAPITOOLS_CLIENT_MODEL_Pet_H_ #define ORG_OPENAPITOOLS_CLIENT_MODEL_Pet_H_ #include "../ModelBase.h" #include "Tag.h" #include #include "Category.h" #include namespace org { namespace openapitools { namespace client { namespace model { /// /// A pet for sale in the pet store /// class Pet : public ModelBase { public: Pet(); virtual ~Pet(); ///////////////////////////////////////////// /// ModelBase overrides void validate() override; web::json::value toJson() const override; void fromJson(const web::json::value& json) override; void toMultipart(std::shared_ptr multipart, const utility::string_t& namePrefix) const override; void fromMultiPart(std::shared_ptr multipart, const utility::string_t& namePrefix) override; ///////////////////////////////////////////// /// Pet members /// /// /// int64_t getId() const; bool idIsSet() const; void unsetId(); void setId(int64_t value); /// /// /// std::shared_ptr getCategory() const; bool categoryIsSet() const; void unsetCategory(); void setCategory(const std::shared_ptr& value); /// /// /// utility::string_t getName() const; void setName(const utility::string_t& value); /// /// /// std::vector& getPhotoUrls(); void setPhotoUrls(const std::vector& value); /// /// /// std::vector>& getTags(); bool tagsIsSet() const; void unsetTags(); void setTags(const std::vector>& value); /// /// pet status in the store /// utility::string_t getStatus() const; bool statusIsSet() const; void unsetStatus(); void setStatus(const utility::string_t& value); protected: int64_t m_Id; bool m_IdIsSet; std::shared_ptr m_Category; bool m_CategoryIsSet; utility::string_t m_Name; std::vector m_PhotoUrls; std::vector> m_Tags; bool m_TagsIsSet; utility::string_t m_Status; bool m_StatusIsSet; }; } } } } #endif /* ORG_OPENAPITOOLS_CLIENT_MODEL_Pet_H_ */