com.aliyun.dingtalkyida_1_0.models.GetTaskCopiesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetTaskCopiesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_PBKT0MFBEBTDO8T7SLVP
*/
@NameInMap("appType")
public String appType;
/**
* example:
* 1234567891234
*/
@NameInMap("createFromTimeGMT")
public Long createFromTimeGMT;
/**
* example:
* 1234567891234
*/
@NameInMap("createToTimeGMT")
public Long createToTimeGMT;
@NameInMap("keyword")
public String keyword;
/**
* example:
* zh_CN
*/
@NameInMap("language")
public String language;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* example:
* ["xx","xxx"]
*/
@NameInMap("processCodes")
public String processCodes;
/**
* This parameter is required.
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static GetTaskCopiesRequest build(java.util.Map map) throws Exception {
GetTaskCopiesRequest self = new GetTaskCopiesRequest();
return TeaModel.build(map, self);
}
public GetTaskCopiesRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetTaskCopiesRequest setCreateFromTimeGMT(Long createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public Long getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetTaskCopiesRequest setCreateToTimeGMT(Long createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public Long getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetTaskCopiesRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public GetTaskCopiesRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetTaskCopiesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetTaskCopiesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetTaskCopiesRequest setProcessCodes(String processCodes) {
this.processCodes = processCodes;
return this;
}
public String getProcessCodes() {
return this.processCodes;
}
public GetTaskCopiesRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetTaskCopiesRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}