
com.tencentcloudapi.billing.v20180709.models.BusinessSummaryTotal 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 BusinessSummaryTotal extends AbstractModel{
/**
* Total cost
*/
@SerializedName("RealTotalCost")
@Expose
private String RealTotalCost;
/**
* Voucher amount
*/
@SerializedName("VoucherPayAmount")
@Expose
private String VoucherPayAmount;
/**
* Trial credit amount
*/
@SerializedName("IncentivePayAmount")
@Expose
private String IncentivePayAmount;
/**
* Cash amount
*/
@SerializedName("CashPayAmount")
@Expose
private String CashPayAmount;
/**
* The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
*/
@SerializedName("TotalCost")
@Expose
private String TotalCost;
/**
* Payment by commission credits
*/
@SerializedName("TransferPayAmount")
@Expose
private String TransferPayAmount;
/**
* Get Total cost
* @return RealTotalCost Total cost
*/
public String getRealTotalCost() {
return this.RealTotalCost;
}
/**
* Set Total cost
* @param RealTotalCost Total cost
*/
public void setRealTotalCost(String RealTotalCost) {
this.RealTotalCost = RealTotalCost;
}
/**
* Get Voucher amount
* @return VoucherPayAmount Voucher amount
*/
public String getVoucherPayAmount() {
return this.VoucherPayAmount;
}
/**
* Set Voucher amount
* @param VoucherPayAmount Voucher amount
*/
public void setVoucherPayAmount(String VoucherPayAmount) {
this.VoucherPayAmount = VoucherPayAmount;
}
/**
* Get Trial credit amount
* @return IncentivePayAmount Trial credit amount
*/
public String getIncentivePayAmount() {
return this.IncentivePayAmount;
}
/**
* Set Trial credit amount
* @param IncentivePayAmount Trial credit amount
*/
public void setIncentivePayAmount(String IncentivePayAmount) {
this.IncentivePayAmount = IncentivePayAmount;
}
/**
* Get Cash amount
* @return CashPayAmount Cash amount
*/
public String getCashPayAmount() {
return this.CashPayAmount;
}
/**
* Set Cash amount
* @param CashPayAmount Cash amount
*/
public void setCashPayAmount(String CashPayAmount) {
this.CashPayAmount = CashPayAmount;
}
/**
* Get The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
* @return TotalCost The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
*/
public String getTotalCost() {
return this.TotalCost;
}
/**
* Set The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
* @param TotalCost The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
*/
public void setTotalCost(String TotalCost) {
this.TotalCost = TotalCost;
}
/**
* Get Payment by commission credits
* @return TransferPayAmount Payment by commission credits
*/
public String getTransferPayAmount() {
return this.TransferPayAmount;
}
/**
* Set Payment by commission credits
* @param TransferPayAmount Payment by commission credits
*/
public void setTransferPayAmount(String TransferPayAmount) {
this.TransferPayAmount = TransferPayAmount;
}
public BusinessSummaryTotal() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public BusinessSummaryTotal(BusinessSummaryTotal source) {
if (source.RealTotalCost != null) {
this.RealTotalCost = new String(source.RealTotalCost);
}
if (source.VoucherPayAmount != null) {
this.VoucherPayAmount = new String(source.VoucherPayAmount);
}
if (source.IncentivePayAmount != null) {
this.IncentivePayAmount = new String(source.IncentivePayAmount);
}
if (source.CashPayAmount != null) {
this.CashPayAmount = new String(source.CashPayAmount);
}
if (source.TotalCost != null) {
this.TotalCost = new String(source.TotalCost);
}
if (source.TransferPayAmount != null) {
this.TransferPayAmount = new String(source.TransferPayAmount);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "RealTotalCost", this.RealTotalCost);
this.setParamSimple(map, prefix + "VoucherPayAmount", this.VoucherPayAmount);
this.setParamSimple(map, prefix + "IncentivePayAmount", this.IncentivePayAmount);
this.setParamSimple(map, prefix + "CashPayAmount", this.CashPayAmount);
this.setParamSimple(map, prefix + "TotalCost", this.TotalCost);
this.setParamSimple(map, prefix + "TransferPayAmount", this.TransferPayAmount);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy