com.antgroup.antchain.openapi.ato.models.QueryInnerAuthorizationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class QueryInnerAuthorizationRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 签署合同的流程id
@NameInMap("flow_id")
@Validation(required = true, maxLength = 64)
public String flowId;
public static QueryInnerAuthorizationRequest build(java.util.Map map) throws Exception {
QueryInnerAuthorizationRequest self = new QueryInnerAuthorizationRequest();
return TeaModel.build(map, self);
}
public QueryInnerAuthorizationRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryInnerAuthorizationRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryInnerAuthorizationRequest setFlowId(String flowId) {
this.flowId = flowId;
return this;
}
public String getFlowId() {
return this.flowId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy