mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 11:24:18 +00:00
81 lines
2.1 KiB
C++
81 lines
2.1 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.12.0.
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/*
|
|
* ServerMetrics.h
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef TRIBUFU_MODELS_ServerMetrics_H_
|
|
#define TRIBUFU_MODELS_ServerMetrics_H_
|
|
|
|
#include "tribufu++/ModelBase.h"
|
|
|
|
namespace tribufu
|
|
{
|
|
namespace models
|
|
{
|
|
|
|
class ServerMetrics : public ModelBase
|
|
{
|
|
public:
|
|
ServerMetrics();
|
|
virtual ~ServerMetrics();
|
|
|
|
/////////////////////////////////////////////
|
|
/// 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;
|
|
|
|
/////////////////////////////////////////////
|
|
/// ServerMetrics members
|
|
|
|
int32_t getServerCount() const;
|
|
bool serverCountIsSet() const;
|
|
void unsetServer_count();
|
|
void setServerCount(int32_t value);
|
|
|
|
int32_t getPackageCount() const;
|
|
bool packageCountIsSet() const;
|
|
void unsetPackage_count();
|
|
void setPackageCount(int32_t value);
|
|
|
|
int32_t getCountryCount() const;
|
|
bool countryCountIsSet() const;
|
|
void unsetCountry_count();
|
|
void setCountryCount(int32_t value);
|
|
|
|
protected:
|
|
int32_t m_Server_count;
|
|
bool m_Server_countIsSet;
|
|
|
|
int32_t m_Package_count;
|
|
bool m_Package_countIsSet;
|
|
|
|
int32_t m_Country_count;
|
|
bool m_Country_countIsSet;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* TRIBUFU_MODELS_ServerMetrics_H_ */
|