#include "huaweicloud/cfw/v1/model/ListFirewallUsingGetRequest.h"
namespace HuaweiCloud {
namespace Sdk {
namespace Cfw {
namespace V1 {
namespace Model {
ListFirewallUsingGetRequest::ListFirewallUsingGetRequest()
{
offset_ = 0;
offsetIsSet_ = false;
limit_ = 0;
limitIsSet_ = false;
serviceType_ = 0;
serviceTypeIsSet_ = false;
enterpriseProjectId_ = "";
enterpriseProjectIdIsSet_ = false;
fwInstanceId_ = "";
fwInstanceIdIsSet_ = false;
}
ListFirewallUsingGetRequest::~ListFirewallUsingGetRequest() = default;
void ListFirewallUsingGetRequest::validate()
{
}
web::json::value ListFirewallUsingGetRequest::toJson() const
{
web::json::value val = web::json::value::object();
if(offsetIsSet_) {
val[utility::conversions::to_string_t("offset")] = ModelBase::toJson(offset_);
}
if(limitIsSet_) {
val[utility::conversions::to_string_t("limit")] = ModelBase::toJson(limit_);
}
if(serviceTypeIsSet_) {
val[utility::conversions::to_string_t("service_type")] = ModelBase::toJson(serviceType_);
}
if(enterpriseProjectIdIsSet_) {
val[utility::conversions::to_string_t("enterprise_project_id")] = ModelBase::toJson(enterpriseProjectId_);
}
if(fwInstanceIdIsSet_) {
val[utility::conversions::to_string_t("fw_instance_id")] = ModelBase::toJson(fwInstanceId_);
}
return val;
}
bool ListFirewallUsingGetRequest::fromJson(const web::json::value& val)
{
bool ok = true;
if(val.has_field(utility::conversions::to_string_t("offset"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("offset"));
if(!fieldValue.is_null())
{
int32_t refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setOffset(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("limit"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("limit"));
if(!fieldValue.is_null())
{
int32_t refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setLimit(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("service_type"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("service_type"));
if(!fieldValue.is_null())
{
int32_t refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setServiceType(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("enterprise_project_id"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("enterprise_project_id"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setEnterpriseProjectId(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("fw_instance_id"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("fw_instance_id"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setFwInstanceId(refVal);
}
}
return ok;
}
int32_t ListFirewallUsingGetRequest::getOffset() const
{
return offset_;
}
void ListFirewallUsingGetRequest::setOffset(int32_t value)
{
offset_ = value;
offsetIsSet_ = true;
}
bool ListFirewallUsingGetRequest::offsetIsSet() const
{
return offsetIsSet_;
}
void ListFirewallUsingGetRequest::unsetoffset()
{
offsetIsSet_ = false;
}
int32_t ListFirewallUsingGetRequest::getLimit() const
{
return limit_;
}
void ListFirewallUsingGetRequest::setLimit(int32_t value)
{
limit_ = value;
limitIsSet_ = true;
}
bool ListFirewallUsingGetRequest::limitIsSet() const
{
return limitIsSet_;
}
void ListFirewallUsingGetRequest::unsetlimit()
{
limitIsSet_ = false;
}
int32_t ListFirewallUsingGetRequest::getServiceType() const
{
return serviceType_;
}
void ListFirewallUsingGetRequest::setServiceType(int32_t value)
{
serviceType_ = value;
serviceTypeIsSet_ = true;
}
bool ListFirewallUsingGetRequest::serviceTypeIsSet() const
{
return serviceTypeIsSet_;
}
void ListFirewallUsingGetRequest::unsetserviceType()
{
serviceTypeIsSet_ = false;
}
std::string ListFirewallUsingGetRequest::getEnterpriseProjectId() const
{
return enterpriseProjectId_;
}
void ListFirewallUsingGetRequest::setEnterpriseProjectId(const std::string& value)
{
enterpriseProjectId_ = value;
enterpriseProjectIdIsSet_ = true;
}
bool ListFirewallUsingGetRequest::enterpriseProjectIdIsSet() const
{
return enterpriseProjectIdIsSet_;
}
void ListFirewallUsingGetRequest::unsetenterpriseProjectId()
{
enterpriseProjectIdIsSet_ = false;
}
std::string ListFirewallUsingGetRequest::getFwInstanceId() const
{
return fwInstanceId_;
}
void ListFirewallUsingGetRequest::setFwInstanceId(const std::string& value)
{
fwInstanceId_ = value;
fwInstanceIdIsSet_ = true;
}
bool ListFirewallUsingGetRequest::fwInstanceIdIsSet() const
{
return fwInstanceIdIsSet_;
}
void ListFirewallUsingGetRequest::unsetfwInstanceId()
{
fwInstanceIdIsSet_ = false;
}
}
}
}
}
}