com.tencentcloudapi.sms.v20210111.models.DescribeSignListStatus 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.sms.v20210111.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeSignListStatus extends AbstractModel{
/**
* Signature ID.
*/
@SerializedName("SignId")
@Expose
private Long SignId;
/**
* Whether it is Global SMS. 0: Mainland China SMS; 1: Global SMS.
*/
@SerializedName("International")
@Expose
private Long International;
/**
* Signature application status. Valid values: 0: approved; 1: under review.
-1: application rejected or failed.
*/
@SerializedName("StatusCode")
@Expose
private Long StatusCode;
/**
* Review reply, i.e., response given by the reviewer, which is usually the reason for rejection.
*/
@SerializedName("ReviewReply")
@Expose
private String ReviewReply;
/**
* Signature name.
*/
@SerializedName("SignName")
@Expose
private String SignName;
/**
* Application submission time in the format of UNIX timestamp in seconds.
*/
@SerializedName("CreateTime")
@Expose
private Long CreateTime;
/**
* Get Signature ID.
* @return SignId Signature ID.
*/
public Long getSignId() {
return this.SignId;
}
/**
* Set Signature ID.
* @param SignId Signature ID.
*/
public void setSignId(Long SignId) {
this.SignId = SignId;
}
/**
* Get Whether it is Global SMS. 0: Mainland China SMS; 1: Global SMS.
* @return International Whether it is Global SMS. 0: Mainland China SMS; 1: Global SMS.
*/
public Long getInternational() {
return this.International;
}
/**
* Set Whether it is Global SMS. 0: Mainland China SMS; 1: Global SMS.
* @param International Whether it is Global SMS. 0: Mainland China SMS; 1: Global SMS.
*/
public void setInternational(Long International) {
this.International = International;
}
/**
* Get Signature application status. Valid values: 0: approved; 1: under review.
-1: application rejected or failed.
* @return StatusCode Signature application status. Valid values: 0: approved; 1: under review.
-1: application rejected or failed.
*/
public Long getStatusCode() {
return this.StatusCode;
}
/**
* Set Signature application status. Valid values: 0: approved; 1: under review.
-1: application rejected or failed.
* @param StatusCode Signature application status. Valid values: 0: approved; 1: under review.
-1: application rejected or failed.
*/
public void setStatusCode(Long StatusCode) {
this.StatusCode = StatusCode;
}
/**
* Get Review reply, i.e., response given by the reviewer, which is usually the reason for rejection.
* @return ReviewReply Review reply, i.e., response given by the reviewer, which is usually the reason for rejection.
*/
public String getReviewReply() {
return this.ReviewReply;
}
/**
* Set Review reply, i.e., response given by the reviewer, which is usually the reason for rejection.
* @param ReviewReply Review reply, i.e., response given by the reviewer, which is usually the reason for rejection.
*/
public void setReviewReply(String ReviewReply) {
this.ReviewReply = ReviewReply;
}
/**
* Get Signature name.
* @return SignName Signature name.
*/
public String getSignName() {
return this.SignName;
}
/**
* Set Signature name.
* @param SignName Signature name.
*/
public void setSignName(String SignName) {
this.SignName = SignName;
}
/**
* Get Application submission time in the format of UNIX timestamp in seconds.
* @return CreateTime Application submission time in the format of UNIX timestamp in seconds.
*/
public Long getCreateTime() {
return this.CreateTime;
}
/**
* Set Application submission time in the format of UNIX timestamp in seconds.
* @param CreateTime Application submission time in the format of UNIX timestamp in seconds.
*/
public void setCreateTime(Long CreateTime) {
this.CreateTime = CreateTime;
}
public DescribeSignListStatus() {
}
/**
* 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 DescribeSignListStatus(DescribeSignListStatus source) {
if (source.SignId != null) {
this.SignId = new Long(source.SignId);
}
if (source.International != null) {
this.International = new Long(source.International);
}
if (source.StatusCode != null) {
this.StatusCode = new Long(source.StatusCode);
}
if (source.ReviewReply != null) {
this.ReviewReply = new String(source.ReviewReply);
}
if (source.SignName != null) {
this.SignName = new String(source.SignName);
}
if (source.CreateTime != null) {
this.CreateTime = new Long(source.CreateTime);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "SignId", this.SignId);
this.setParamSimple(map, prefix + "International", this.International);
this.setParamSimple(map, prefix + "StatusCode", this.StatusCode);
this.setParamSimple(map, prefix + "ReviewReply", this.ReviewReply);
this.setParamSimple(map, prefix + "SignName", this.SignName);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy