com.aliyuncs.imm.model.v20170906.SearchDocIndexRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-imm Show documentation
Show all versions of aliyun-java-sdk-imm Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.imm.model.v20170906;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.imm.Endpoint;
/**
* @author auto create
* @version
*/
public class SearchDocIndexRequest extends RpcAcsRequest {
private Integer modifiedTimeEnd;
private Integer sizeLimitEnd;
private String project;
private Integer modifiedTimeStart;
private Integer pageNumLimitStart;
private String content;
private Integer sizeLimitStart;
private Integer limit;
private String customKey1;
private String set;
private String customKey5;
private Integer offset;
private String customKey4;
private String customKey3;
private String customKey2;
private String customKey6;
private Integer pageNumLimitEnd;
private String contentType;
private String name;
public SearchDocIndexRequest() {
super("imm", "2017-09-06", "SearchDocIndex");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getModifiedTimeEnd() {
return this.modifiedTimeEnd;
}
public void setModifiedTimeEnd(Integer modifiedTimeEnd) {
this.modifiedTimeEnd = modifiedTimeEnd;
if(modifiedTimeEnd != null){
putQueryParameter("ModifiedTimeEnd", modifiedTimeEnd.toString());
}
}
public Integer getSizeLimitEnd() {
return this.sizeLimitEnd;
}
public void setSizeLimitEnd(Integer sizeLimitEnd) {
this.sizeLimitEnd = sizeLimitEnd;
if(sizeLimitEnd != null){
putQueryParameter("SizeLimitEnd", sizeLimitEnd.toString());
}
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
if(project != null){
putQueryParameter("Project", project);
}
}
public Integer getModifiedTimeStart() {
return this.modifiedTimeStart;
}
public void setModifiedTimeStart(Integer modifiedTimeStart) {
this.modifiedTimeStart = modifiedTimeStart;
if(modifiedTimeStart != null){
putQueryParameter("ModifiedTimeStart", modifiedTimeStart.toString());
}
}
public Integer getPageNumLimitStart() {
return this.pageNumLimitStart;
}
public void setPageNumLimitStart(Integer pageNumLimitStart) {
this.pageNumLimitStart = pageNumLimitStart;
if(pageNumLimitStart != null){
putQueryParameter("PageNumLimitStart", pageNumLimitStart.toString());
}
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
if(content != null){
putQueryParameter("Content", content);
}
}
public Integer getSizeLimitStart() {
return this.sizeLimitStart;
}
public void setSizeLimitStart(Integer sizeLimitStart) {
this.sizeLimitStart = sizeLimitStart;
if(sizeLimitStart != null){
putQueryParameter("SizeLimitStart", sizeLimitStart.toString());
}
}
public Integer getLimit() {
return this.limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
if(limit != null){
putQueryParameter("Limit", limit.toString());
}
}
public String getCustomKey1() {
return this.customKey1;
}
public void setCustomKey1(String customKey1) {
this.customKey1 = customKey1;
if(customKey1 != null){
putQueryParameter("CustomKey1", customKey1);
}
}
public String getSet() {
return this.set;
}
public void setSet(String set) {
this.set = set;
if(set != null){
putQueryParameter("Set", set);
}
}
public String getCustomKey5() {
return this.customKey5;
}
public void setCustomKey5(String customKey5) {
this.customKey5 = customKey5;
if(customKey5 != null){
putQueryParameter("CustomKey5", customKey5);
}
}
public Integer getOffset() {
return this.offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
if(offset != null){
putQueryParameter("Offset", offset.toString());
}
}
public String getCustomKey4() {
return this.customKey4;
}
public void setCustomKey4(String customKey4) {
this.customKey4 = customKey4;
if(customKey4 != null){
putQueryParameter("CustomKey4", customKey4);
}
}
public String getCustomKey3() {
return this.customKey3;
}
public void setCustomKey3(String customKey3) {
this.customKey3 = customKey3;
if(customKey3 != null){
putQueryParameter("CustomKey3", customKey3);
}
}
public String getCustomKey2() {
return this.customKey2;
}
public void setCustomKey2(String customKey2) {
this.customKey2 = customKey2;
if(customKey2 != null){
putQueryParameter("CustomKey2", customKey2);
}
}
public String getCustomKey6() {
return this.customKey6;
}
public void setCustomKey6(String customKey6) {
this.customKey6 = customKey6;
if(customKey6 != null){
putQueryParameter("CustomKey6", customKey6);
}
}
public Integer getPageNumLimitEnd() {
return this.pageNumLimitEnd;
}
public void setPageNumLimitEnd(Integer pageNumLimitEnd) {
this.pageNumLimitEnd = pageNumLimitEnd;
if(pageNumLimitEnd != null){
putQueryParameter("PageNumLimitEnd", pageNumLimitEnd.toString());
}
}
public String getContentType() {
return this.contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
if(contentType != null){
putQueryParameter("ContentType", contentType);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
@Override
public Class getResponseClass() {
return SearchDocIndexResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy