![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.intlpartnersmgt.v20220928.models.BusinessInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.intlpartnersmgt.v20220928.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class BusinessInfo extends AbstractModel {
/**
* ProductNote: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("BusinessCodeName")
@Expose
private String BusinessCodeName;
/**
* Product codeNote: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("BusinessCode")
@Expose
private String BusinessCode;
/**
* Original price
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("OriginalCost")
@Expose
private String OriginalCost;
/**
* Voucher amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("VoucherPayAmount")
@Expose
private String VoucherPayAmount;
/**
* Daily deduction
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("RICost")
@Expose
private String RICost;
/**
* Total amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("TotalCost")
@Expose
private String TotalCost;
/**
* Get ProductNote: This field may return null, indicating that no valid values can be obtained.
* @return BusinessCodeName ProductNote: This field may return null, indicating that no valid values can be obtained.
*/
public String getBusinessCodeName() {
return this.BusinessCodeName;
}
/**
* Set ProductNote: This field may return null, indicating that no valid values can be obtained.
* @param BusinessCodeName ProductNote: This field may return null, indicating that no valid values can be obtained.
*/
public void setBusinessCodeName(String BusinessCodeName) {
this.BusinessCodeName = BusinessCodeName;
}
/**
* Get Product codeNote: This field may return null, indicating that no valid values can be obtained.
* @return BusinessCode Product codeNote: This field may return null, indicating that no valid values can be obtained.
*/
public String getBusinessCode() {
return this.BusinessCode;
}
/**
* Set Product codeNote: This field may return null, indicating that no valid values can be obtained.
* @param BusinessCode Product codeNote: This field may return null, indicating that no valid values can be obtained.
*/
public void setBusinessCode(String BusinessCode) {
this.BusinessCode = BusinessCode;
}
/**
* Get Original price
Note: This field may return null, indicating that no valid values can be obtained.
* @return OriginalCost Original price
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getOriginalCost() {
return this.OriginalCost;
}
/**
* Set Original price
Note: This field may return null, indicating that no valid values can be obtained.
* @param OriginalCost Original price
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setOriginalCost(String OriginalCost) {
this.OriginalCost = OriginalCost;
}
/**
* Get Voucher amount
Note: This field may return null, indicating that no valid values can be obtained.
* @return VoucherPayAmount Voucher amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getVoucherPayAmount() {
return this.VoucherPayAmount;
}
/**
* Set Voucher amount
Note: This field may return null, indicating that no valid values can be obtained.
* @param VoucherPayAmount Voucher amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setVoucherPayAmount(String VoucherPayAmount) {
this.VoucherPayAmount = VoucherPayAmount;
}
/**
* Get Daily deduction
Note: This field may return null, indicating that no valid values can be obtained.
* @return RICost Daily deduction
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getRICost() {
return this.RICost;
}
/**
* Set Daily deduction
Note: This field may return null, indicating that no valid values can be obtained.
* @param RICost Daily deduction
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setRICost(String RICost) {
this.RICost = RICost;
}
/**
* Get Total amount
Note: This field may return null, indicating that no valid values can be obtained.
* @return TotalCost Total amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getTotalCost() {
return this.TotalCost;
}
/**
* Set Total amount
Note: This field may return null, indicating that no valid values can be obtained.
* @param TotalCost Total amount
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setTotalCost(String TotalCost) {
this.TotalCost = TotalCost;
}
public BusinessInfo() {
}
/**
* 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 BusinessInfo(BusinessInfo source) {
if (source.BusinessCodeName != null) {
this.BusinessCodeName = new String(source.BusinessCodeName);
}
if (source.BusinessCode != null) {
this.BusinessCode = new String(source.BusinessCode);
}
if (source.OriginalCost != null) {
this.OriginalCost = new String(source.OriginalCost);
}
if (source.VoucherPayAmount != null) {
this.VoucherPayAmount = new String(source.VoucherPayAmount);
}
if (source.RICost != null) {
this.RICost = new String(source.RICost);
}
if (source.TotalCost != null) {
this.TotalCost = new String(source.TotalCost);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "BusinessCodeName", this.BusinessCodeName);
this.setParamSimple(map, prefix + "BusinessCode", this.BusinessCode);
this.setParamSimple(map, prefix + "OriginalCost", this.OriginalCost);
this.setParamSimple(map, prefix + "VoucherPayAmount", this.VoucherPayAmount);
this.setParamSimple(map, prefix + "RICost", this.RICost);
this.setParamSimple(map, prefix + "TotalCost", this.TotalCost);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy