com.antgroup.antchain.openapi.twc.models.QueryContractWordspositionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class QueryContractWordspositionRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 文档id
@NameInMap("file_id")
@Validation(required = true)
public String fileId;
// 关键字列表,逗号分割;注意要英文的逗号,不能中文逗号;关键字建议不要设置特殊字符,因Adobe无法识别部分符号,某些特殊字符会因解析失败从而导致搜索不到
@NameInMap("keywords")
@Validation(required = true)
public String keywords;
public static QueryContractWordspositionRequest build(java.util.Map map) throws Exception {
QueryContractWordspositionRequest self = new QueryContractWordspositionRequest();
return TeaModel.build(map, self);
}
public QueryContractWordspositionRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryContractWordspositionRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryContractWordspositionRequest setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public QueryContractWordspositionRequest setKeywords(String keywords) {
this.keywords = keywords;
return this;
}
public String getKeywords() {
return this.keywords;
}
}