com.tencentcloudapi.tcb.v20180608.models.OrderInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-tcb Show documentation
Show all versions of tencentcloud-sdk-java-tcb Show documentation
Tencent Cloud Open 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.tcb.v20180608.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class OrderInfo extends AbstractModel{
/**
* 订单号
*/
@SerializedName("TranId")
@Expose
private String TranId;
/**
* 订单要切换的套餐ID
*/
@SerializedName("PackageId")
@Expose
private String PackageId;
/**
* 订单类型
1 购买
2 续费
3 变配
*/
@SerializedName("TranType")
@Expose
private String TranType;
/**
* 订单状态。
1未支付
2 支付中
3 发货中
4 发货成功
5 发货失败
6 已退款
7 已取消
100 已删除
*/
@SerializedName("TranStatus")
@Expose
private String TranStatus;
/**
* 订单更新时间
*/
@SerializedName("UpdateTime")
@Expose
private String UpdateTime;
/**
* 订单创建时间
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* 付费模式.
prepayment 预付费
postpaid 后付费
*/
@SerializedName("PayMode")
@Expose
private String PayMode;
/**
* 订单绑定的扩展ID
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ExtensionId")
@Expose
private String ExtensionId;
/**
* 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ResourceReady")
@Expose
private String ResourceReady;
/**
* Get 订单号
* @return TranId 订单号
*/
public String getTranId() {
return this.TranId;
}
/**
* Set 订单号
* @param TranId 订单号
*/
public void setTranId(String TranId) {
this.TranId = TranId;
}
/**
* Get 订单要切换的套餐ID
* @return PackageId 订单要切换的套餐ID
*/
public String getPackageId() {
return this.PackageId;
}
/**
* Set 订单要切换的套餐ID
* @param PackageId 订单要切换的套餐ID
*/
public void setPackageId(String PackageId) {
this.PackageId = PackageId;
}
/**
* Get 订单类型
1 购买
2 续费
3 变配
* @return TranType 订单类型
1 购买
2 续费
3 变配
*/
public String getTranType() {
return this.TranType;
}
/**
* Set 订单类型
1 购买
2 续费
3 变配
* @param TranType 订单类型
1 购买
2 续费
3 变配
*/
public void setTranType(String TranType) {
this.TranType = TranType;
}
/**
* Get 订单状态。
1未支付
2 支付中
3 发货中
4 发货成功
5 发货失败
6 已退款
7 已取消
100 已删除
* @return TranStatus 订单状态。
1未支付
2 支付中
3 发货中
4 发货成功
5 发货失败
6 已退款
7 已取消
100 已删除
*/
public String getTranStatus() {
return this.TranStatus;
}
/**
* Set 订单状态。
1未支付
2 支付中
3 发货中
4 发货成功
5 发货失败
6 已退款
7 已取消
100 已删除
* @param TranStatus 订单状态。
1未支付
2 支付中
3 发货中
4 发货成功
5 发货失败
6 已退款
7 已取消
100 已删除
*/
public void setTranStatus(String TranStatus) {
this.TranStatus = TranStatus;
}
/**
* Get 订单更新时间
* @return UpdateTime 订单更新时间
*/
public String getUpdateTime() {
return this.UpdateTime;
}
/**
* Set 订单更新时间
* @param UpdateTime 订单更新时间
*/
public void setUpdateTime(String UpdateTime) {
this.UpdateTime = UpdateTime;
}
/**
* Get 订单创建时间
* @return CreateTime 订单创建时间
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set 订单创建时间
* @param CreateTime 订单创建时间
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Get 付费模式.
prepayment 预付费
postpaid 后付费
* @return PayMode 付费模式.
prepayment 预付费
postpaid 后付费
*/
public String getPayMode() {
return this.PayMode;
}
/**
* Set 付费模式.
prepayment 预付费
postpaid 后付费
* @param PayMode 付费模式.
prepayment 预付费
postpaid 后付费
*/
public void setPayMode(String PayMode) {
this.PayMode = PayMode;
}
/**
* Get 订单绑定的扩展ID
注意:此字段可能返回 null,表示取不到有效值。
* @return ExtensionId 订单绑定的扩展ID
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getExtensionId() {
return this.ExtensionId;
}
/**
* Set 订单绑定的扩展ID
注意:此字段可能返回 null,表示取不到有效值。
* @param ExtensionId 订单绑定的扩展ID
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setExtensionId(String ExtensionId) {
this.ExtensionId = ExtensionId;
}
/**
* Get 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
注意:此字段可能返回 null,表示取不到有效值。
* @return ResourceReady 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getResourceReady() {
return this.ResourceReady;
}
/**
* Set 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
注意:此字段可能返回 null,表示取不到有效值。
* @param ResourceReady 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setResourceReady(String ResourceReady) {
this.ResourceReady = ResourceReady;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "TranId", this.TranId);
this.setParamSimple(map, prefix + "PackageId", this.PackageId);
this.setParamSimple(map, prefix + "TranType", this.TranType);
this.setParamSimple(map, prefix + "TranStatus", this.TranStatus);
this.setParamSimple(map, prefix + "UpdateTime", this.UpdateTime);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
this.setParamSimple(map, prefix + "PayMode", this.PayMode);
this.setParamSimple(map, prefix + "ExtensionId", this.ExtensionId);
this.setParamSimple(map, prefix + "ResourceReady", this.ResourceReady);
}
}