com.aliyun.dingtalkservice_group_1_0.models.QueryCustomerTaskUserDetailRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class QueryCustomerTaskUserDetailRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* example:
* 8888
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* 8888
*/
@NameInMap("openBatchTaskId")
public String openBatchTaskId;
/**
* This parameter is required.
*
* example:
* 8888
*/
@NameInMap("openTeamId")
public String openTeamId;
@NameInMap("receiverUnionIds")
public java.util.List receiverUnionIds;
public static QueryCustomerTaskUserDetailRequest build(java.util.Map map) throws Exception {
QueryCustomerTaskUserDetailRequest self = new QueryCustomerTaskUserDetailRequest();
return TeaModel.build(map, self);
}
public QueryCustomerTaskUserDetailRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public QueryCustomerTaskUserDetailRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryCustomerTaskUserDetailRequest setOpenBatchTaskId(String openBatchTaskId) {
this.openBatchTaskId = openBatchTaskId;
return this;
}
public String getOpenBatchTaskId() {
return this.openBatchTaskId;
}
public QueryCustomerTaskUserDetailRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public QueryCustomerTaskUserDetailRequest setReceiverUnionIds(java.util.List receiverUnionIds) {
this.receiverUnionIds = receiverUnionIds;
return this;
}
public java.util.List getReceiverUnionIds() {
return this.receiverUnionIds;
}
}