com.tencentcloudapi.intlpartnersmgt.v20220928.models.QueryVoucherListByUinVoucherItem 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.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 QueryVoucherListByUinVoucherItem extends AbstractModel {
/**
* Voucher ID
*/
@SerializedName("VoucherId")
@Expose
private String VoucherId;
/**
* Voucher status
*/
@SerializedName("VoucherStatus")
@Expose
private String VoucherStatus;
/**
* Voucher value
*/
@SerializedName("TotalAmount")
@Expose
private Float TotalAmount;
/**
* Balance
*/
@SerializedName("RemainAmount")
@Expose
private Float RemainAmount;
/**
* Get Voucher ID
* @return VoucherId Voucher ID
*/
public String getVoucherId() {
return this.VoucherId;
}
/**
* Set Voucher ID
* @param VoucherId Voucher ID
*/
public void setVoucherId(String VoucherId) {
this.VoucherId = VoucherId;
}
/**
* Get Voucher status
* @return VoucherStatus Voucher status
*/
public String getVoucherStatus() {
return this.VoucherStatus;
}
/**
* Set Voucher status
* @param VoucherStatus Voucher status
*/
public void setVoucherStatus(String VoucherStatus) {
this.VoucherStatus = VoucherStatus;
}
/**
* Get Voucher value
* @return TotalAmount Voucher value
*/
public Float getTotalAmount() {
return this.TotalAmount;
}
/**
* Set Voucher value
* @param TotalAmount Voucher value
*/
public void setTotalAmount(Float TotalAmount) {
this.TotalAmount = TotalAmount;
}
/**
* Get Balance
* @return RemainAmount Balance
*/
public Float getRemainAmount() {
return this.RemainAmount;
}
/**
* Set Balance
* @param RemainAmount Balance
*/
public void setRemainAmount(Float RemainAmount) {
this.RemainAmount = RemainAmount;
}
public QueryVoucherListByUinVoucherItem() {
}
/**
* 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 QueryVoucherListByUinVoucherItem(QueryVoucherListByUinVoucherItem source) {
if (source.VoucherId != null) {
this.VoucherId = new String(source.VoucherId);
}
if (source.VoucherStatus != null) {
this.VoucherStatus = new String(source.VoucherStatus);
}
if (source.TotalAmount != null) {
this.TotalAmount = new Float(source.TotalAmount);
}
if (source.RemainAmount != null) {
this.RemainAmount = new Float(source.RemainAmount);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "VoucherId", this.VoucherId);
this.setParamSimple(map, prefix + "VoucherStatus", this.VoucherStatus);
this.setParamSimple(map, prefix + "TotalAmount", this.TotalAmount);
this.setParamSimple(map, prefix + "RemainAmount", this.RemainAmount);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy