com.antgroup.antchain.openapi.baasdt.models.AuthIpUserRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-baasdt Show documentation
Show all versions of openapi-baasdt Show documentation
Ant Chain BAASDT SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.baasdt.models;
import com.aliyun.tea.*;
public class AuthIpUserRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 基础参数
@NameInMap("base_request")
@Validation(required = true)
public BaseRequestInfo baseRequest;
// 用户授权code
@NameInMap("auth_code")
@Validation(required = true)
public String authCode;
public static AuthIpUserRequest build(java.util.Map map) throws Exception {
AuthIpUserRequest self = new AuthIpUserRequest();
return TeaModel.build(map, self);
}
public AuthIpUserRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public AuthIpUserRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public AuthIpUserRequest setBaseRequest(BaseRequestInfo baseRequest) {
this.baseRequest = baseRequest;
return this;
}
public BaseRequestInfo getBaseRequest() {
return this.baseRequest;
}
public AuthIpUserRequest setAuthCode(String authCode) {
this.authCode = authCode;
return this;
}
public String getAuthCode() {
return this.authCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy