com.tencentcloudapi.tcb.v20180608.models.DescribeEnvDealRegionRequest 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.tcb.v20180608.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 DescribeEnvDealRegionRequest extends AbstractModel {
/**
* 环境ID
*/
@SerializedName("EnvId")
@Expose
private String EnvId;
/**
* 订单类型:
ENV_PREPAY_MINIAPP= 预付费环境(微信小程序)
ENV_PREPAY_CLOUD= 预付费环境(腾讯云)
ENV_POSTPAY = 后付费环境
HOSTING_PREPAY = 预付费静态托管
PACKAGE=套餐包
*/
@SerializedName("DealType")
@Expose
private String DealType;
/**
* 下单类型:
CREATE = 新购
RENEW = 续费
MODIFY = 套餐调整(升级/降级)
REFUND = 退费
*/
@SerializedName("DealAction")
@Expose
private String DealAction;
/**
* 下单地域:
ap-guangzhou = 广州地域
ap-shanghai = 上海地域
ap-beijing = 北京地域
*/
@SerializedName("DealRegion")
@Expose
private String DealRegion;
/**
* Get 环境ID
* @return EnvId 环境ID
*/
public String getEnvId() {
return this.EnvId;
}
/**
* Set 环境ID
* @param EnvId 环境ID
*/
public void setEnvId(String EnvId) {
this.EnvId = EnvId;
}
/**
* Get 订单类型:
ENV_PREPAY_MINIAPP= 预付费环境(微信小程序)
ENV_PREPAY_CLOUD= 预付费环境(腾讯云)
ENV_POSTPAY = 后付费环境
HOSTING_PREPAY = 预付费静态托管
PACKAGE=套餐包
* @return DealType 订单类型:
ENV_PREPAY_MINIAPP= 预付费环境(微信小程序)
ENV_PREPAY_CLOUD= 预付费环境(腾讯云)
ENV_POSTPAY = 后付费环境
HOSTING_PREPAY = 预付费静态托管
PACKAGE=套餐包
*/
public String getDealType() {
return this.DealType;
}
/**
* Set 订单类型:
ENV_PREPAY_MINIAPP= 预付费环境(微信小程序)
ENV_PREPAY_CLOUD= 预付费环境(腾讯云)
ENV_POSTPAY = 后付费环境
HOSTING_PREPAY = 预付费静态托管
PACKAGE=套餐包
* @param DealType 订单类型:
ENV_PREPAY_MINIAPP= 预付费环境(微信小程序)
ENV_PREPAY_CLOUD= 预付费环境(腾讯云)
ENV_POSTPAY = 后付费环境
HOSTING_PREPAY = 预付费静态托管
PACKAGE=套餐包
*/
public void setDealType(String DealType) {
this.DealType = DealType;
}
/**
* Get 下单类型:
CREATE = 新购
RENEW = 续费
MODIFY = 套餐调整(升级/降级)
REFUND = 退费
* @return DealAction 下单类型:
CREATE = 新购
RENEW = 续费
MODIFY = 套餐调整(升级/降级)
REFUND = 退费
*/
public String getDealAction() {
return this.DealAction;
}
/**
* Set 下单类型:
CREATE = 新购
RENEW = 续费
MODIFY = 套餐调整(升级/降级)
REFUND = 退费
* @param DealAction 下单类型:
CREATE = 新购
RENEW = 续费
MODIFY = 套餐调整(升级/降级)
REFUND = 退费
*/
public void setDealAction(String DealAction) {
this.DealAction = DealAction;
}
/**
* Get 下单地域:
ap-guangzhou = 广州地域
ap-shanghai = 上海地域
ap-beijing = 北京地域
* @return DealRegion 下单地域:
ap-guangzhou = 广州地域
ap-shanghai = 上海地域
ap-beijing = 北京地域
*/
public String getDealRegion() {
return this.DealRegion;
}
/**
* Set 下单地域:
ap-guangzhou = 广州地域
ap-shanghai = 上海地域
ap-beijing = 北京地域
* @param DealRegion 下单地域:
ap-guangzhou = 广州地域
ap-shanghai = 上海地域
ap-beijing = 北京地域
*/
public void setDealRegion(String DealRegion) {
this.DealRegion = DealRegion;
}
public DescribeEnvDealRegionRequest() {
}
/**
* 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 DescribeEnvDealRegionRequest(DescribeEnvDealRegionRequest source) {
if (source.EnvId != null) {
this.EnvId = new String(source.EnvId);
}
if (source.DealType != null) {
this.DealType = new String(source.DealType);
}
if (source.DealAction != null) {
this.DealAction = new String(source.DealAction);
}
if (source.DealRegion != null) {
this.DealRegion = new String(source.DealRegion);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "EnvId", this.EnvId);
this.setParamSimple(map, prefix + "DealType", this.DealType);
this.setParamSimple(map, prefix + "DealAction", this.DealAction);
this.setParamSimple(map, prefix + "DealRegion", this.DealRegion);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy