
com.tencentcloudapi.billing.v20180709.models.BusinessSummaryOverviewItem 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 BusinessSummaryOverviewItem extends AbstractModel{
/**
* 产品码
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("BusinessCode")
@Expose
private String BusinessCode;
/**
* 产品名称:云产品大类,如云服务器CVM、云数据库MySQL
*/
@SerializedName("BusinessCodeName")
@Expose
private String BusinessCodeName;
/**
* 实际花费
*/
@SerializedName("RealTotalCost")
@Expose
private String RealTotalCost;
/**
* 费用所占百分比,两位小数
*/
@SerializedName("RealTotalCostRatio")
@Expose
private String RealTotalCostRatio;
/**
* 现金金额
*/
@SerializedName("CashPayAmount")
@Expose
private String CashPayAmount;
/**
* 赠送金金额
*/
@SerializedName("IncentivePayAmount")
@Expose
private String IncentivePayAmount;
/**
* 代金券金额
*/
@SerializedName("VoucherPayAmount")
@Expose
private String VoucherPayAmount;
/**
* 账单月份,格式2019-08
*/
@SerializedName("BillMonth")
@Expose
private String BillMonth;
/**
* Get 产品码
注意:此字段可能返回 null,表示取不到有效值。
* @return BusinessCode 产品码
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getBusinessCode() {
return this.BusinessCode;
}
/**
* Set 产品码
注意:此字段可能返回 null,表示取不到有效值。
* @param BusinessCode 产品码
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setBusinessCode(String BusinessCode) {
this.BusinessCode = BusinessCode;
}
/**
* Get 产品名称:云产品大类,如云服务器CVM、云数据库MySQL
* @return BusinessCodeName 产品名称:云产品大类,如云服务器CVM、云数据库MySQL
*/
public String getBusinessCodeName() {
return this.BusinessCodeName;
}
/**
* Set 产品名称:云产品大类,如云服务器CVM、云数据库MySQL
* @param BusinessCodeName 产品名称:云产品大类,如云服务器CVM、云数据库MySQL
*/
public void setBusinessCodeName(String BusinessCodeName) {
this.BusinessCodeName = BusinessCodeName;
}
/**
* Get 实际花费
* @return RealTotalCost 实际花费
*/
public String getRealTotalCost() {
return this.RealTotalCost;
}
/**
* Set 实际花费
* @param RealTotalCost 实际花费
*/
public void setRealTotalCost(String RealTotalCost) {
this.RealTotalCost = RealTotalCost;
}
/**
* Get 费用所占百分比,两位小数
* @return RealTotalCostRatio 费用所占百分比,两位小数
*/
public String getRealTotalCostRatio() {
return this.RealTotalCostRatio;
}
/**
* Set 费用所占百分比,两位小数
* @param RealTotalCostRatio 费用所占百分比,两位小数
*/
public void setRealTotalCostRatio(String RealTotalCostRatio) {
this.RealTotalCostRatio = RealTotalCostRatio;
}
/**
* Get 现金金额
* @return CashPayAmount 现金金额
*/
public String getCashPayAmount() {
return this.CashPayAmount;
}
/**
* Set 现金金额
* @param CashPayAmount 现金金额
*/
public void setCashPayAmount(String CashPayAmount) {
this.CashPayAmount = CashPayAmount;
}
/**
* Get 赠送金金额
* @return IncentivePayAmount 赠送金金额
*/
public String getIncentivePayAmount() {
return this.IncentivePayAmount;
}
/**
* Set 赠送金金额
* @param IncentivePayAmount 赠送金金额
*/
public void setIncentivePayAmount(String IncentivePayAmount) {
this.IncentivePayAmount = IncentivePayAmount;
}
/**
* Get 代金券金额
* @return VoucherPayAmount 代金券金额
*/
public String getVoucherPayAmount() {
return this.VoucherPayAmount;
}
/**
* Set 代金券金额
* @param VoucherPayAmount 代金券金额
*/
public void setVoucherPayAmount(String VoucherPayAmount) {
this.VoucherPayAmount = VoucherPayAmount;
}
/**
* Get 账单月份,格式2019-08
* @return BillMonth 账单月份,格式2019-08
*/
public String getBillMonth() {
return this.BillMonth;
}
/**
* Set 账单月份,格式2019-08
* @param BillMonth 账单月份,格式2019-08
*/
public void setBillMonth(String BillMonth) {
this.BillMonth = BillMonth;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "BusinessCode", this.BusinessCode);
this.setParamSimple(map, prefix + "BusinessCodeName", this.BusinessCodeName);
this.setParamSimple(map, prefix + "RealTotalCost", this.RealTotalCost);
this.setParamSimple(map, prefix + "RealTotalCostRatio", this.RealTotalCostRatio);
this.setParamSimple(map, prefix + "CashPayAmount", this.CashPayAmount);
this.setParamSimple(map, prefix + "IncentivePayAmount", this.IncentivePayAmount);
this.setParamSimple(map, prefix + "VoucherPayAmount", this.VoucherPayAmount);
this.setParamSimple(map, prefix + "BillMonth", this.BillMonth);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy