com.aliyun.ecd20200930.models.SendVerifyCodeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecd20200930 Show documentation
Show all versions of ecd20200930 Show documentation
Alibaba Cloud ecd (20200930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ecd20200930.models;
import com.aliyun.tea.*;
public class SendVerifyCodeResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
public static SendVerifyCodeResponseBody build(java.util.Map map) throws Exception {
SendVerifyCodeResponseBody self = new SendVerifyCodeResponseBody();
return TeaModel.build(map, self);
}
public SendVerifyCodeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}