com.antgroup.antchain.openapi.ak_708d6673ed844a78b9e93fb80465e6d8.models.BindDemoGatewayAbcTestRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ak_708d6673ed844a78b9e93fb80465e6d8 Show documentation
Show all versions of openapi-ak_708d6673ed844a78b9e93fb80465e6d8 Show documentation
Ant Chain ak_708d6673ed844a78b9e93fb80465e6d8 SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ak_708d6673ed844a78b9e93fb80465e6d8.models;
import com.aliyun.tea.*;
public class BindDemoGatewayAbcTestRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
public static BindDemoGatewayAbcTestRequest build(java.util.Map map) throws Exception {
BindDemoGatewayAbcTestRequest self = new BindDemoGatewayAbcTestRequest();
return TeaModel.build(map, self);
}
public BindDemoGatewayAbcTestRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public BindDemoGatewayAbcTestRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
}