com.aliyun.dyvmsapi20170525.models.SendVerificationResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dyvmsapi20170525 Show documentation
Show all versions of dyvmsapi20170525 Show documentation
Aliyun DYSMSAPI SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyvmsapi20170525.models;
import com.aliyun.tea.*;
public class SendVerificationResponseBody extends TeaModel {
/**
* The response code.
*
* * The value OK indicates that the request was successful.
* * For more information about other response codes, see [API error codes](~~112502~~).
*/
@NameInMap("Code")
public String code;
/**
* Indicates whether the verification code was sent successfully.
*/
@NameInMap("Data")
public Boolean data;
/**
* The returned message.
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*/
@NameInMap("RequestId")
public String requestId;
public static SendVerificationResponseBody build(java.util.Map map) throws Exception {
SendVerificationResponseBody self = new SendVerificationResponseBody();
return TeaModel.build(map, self);
}
public SendVerificationResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public SendVerificationResponseBody setData(Boolean data) {
this.data = data;
return this;
}
public Boolean getData() {
return this.data;
}
public SendVerificationResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public SendVerificationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy