
com.tencentcloudapi.billing.v20180709.models.ConsumptionRegionSummaryDataItem Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.billing.v20180709.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ConsumptionRegionSummaryDataItem extends AbstractModel{
/**
* 地域ID
*/
@SerializedName("RegionId")
@Expose
private String RegionId;
/**
* 地域名称
*/
@SerializedName("RegionName")
@Expose
private String RegionName;
/**
* 折后总价
*/
@SerializedName("RealTotalCost")
@Expose
private String RealTotalCost;
/**
* 趋势
*/
@SerializedName("Trend")
@Expose
private ConsumptionSummaryTrend Trend;
/**
* 产品消费详情
*/
@SerializedName("Business")
@Expose
private ConsumptionBusinessSummaryDataItem [] Business;
/**
* Get 地域ID
* @return RegionId 地域ID
*/
public String getRegionId() {
return this.RegionId;
}
/**
* Set 地域ID
* @param RegionId 地域ID
*/
public void setRegionId(String RegionId) {
this.RegionId = RegionId;
}
/**
* Get 地域名称
* @return RegionName 地域名称
*/
public String getRegionName() {
return this.RegionName;
}
/**
* Set 地域名称
* @param RegionName 地域名称
*/
public void setRegionName(String RegionName) {
this.RegionName = RegionName;
}
/**
* Get 折后总价
* @return RealTotalCost 折后总价
*/
public String getRealTotalCost() {
return this.RealTotalCost;
}
/**
* Set 折后总价
* @param RealTotalCost 折后总价
*/
public void setRealTotalCost(String RealTotalCost) {
this.RealTotalCost = RealTotalCost;
}
/**
* Get 趋势
* @return Trend 趋势
*/
public ConsumptionSummaryTrend getTrend() {
return this.Trend;
}
/**
* Set 趋势
* @param Trend 趋势
*/
public void setTrend(ConsumptionSummaryTrend Trend) {
this.Trend = Trend;
}
/**
* Get 产品消费详情
* @return Business 产品消费详情
*/
public ConsumptionBusinessSummaryDataItem [] getBusiness() {
return this.Business;
}
/**
* Set 产品消费详情
* @param Business 产品消费详情
*/
public void setBusiness(ConsumptionBusinessSummaryDataItem [] Business) {
this.Business = Business;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "RegionId", this.RegionId);
this.setParamSimple(map, prefix + "RegionName", this.RegionName);
this.setParamSimple(map, prefix + "RealTotalCost", this.RealTotalCost);
this.setParamObj(map, prefix + "Trend.", this.Trend);
this.setParamArrayObj(map, prefix + "Business.", this.Business);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy