All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkservice_group_1_0.models.QueryCustomerTaskUserDetailRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy