com.antgroup.antchain.openapi.acm.models.CheckLoginnameRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-acm Show documentation
Show all versions of openapi-acm Show documentation
Ant Chain acm SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.acm.models;
import com.aliyun.tea.*;
public class CheckLoginnameRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// 邮箱名称
@NameInMap("login_name")
@Validation(required = true)
public String loginName;
public static CheckLoginnameRequest build(java.util.Map map) throws Exception {
CheckLoginnameRequest self = new CheckLoginnameRequest();
return TeaModel.build(map, self);
}
public CheckLoginnameRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CheckLoginnameRequest setLoginName(String loginName) {
this.loginName = loginName;
return this;
}
public String getLoginName() {
return this.loginName;
}
}