com.antgroup.antchain.openapi.demo.models.QueryTestEmbedUserRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class QueryTestEmbedUserRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// test
@NameInMap("user_id")
@Validation(required = true)
public String userId;
public static QueryTestEmbedUserRequest build(java.util.Map map) throws Exception {
QueryTestEmbedUserRequest self = new QueryTestEmbedUserRequest();
return TeaModel.build(map, self);
}
public QueryTestEmbedUserRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryTestEmbedUserRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryTestEmbedUserRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy