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

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

There is a newer version: 2.1.30
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 QuerySendMsgTaskStatisticsRequest extends TeaModel {
    // 每页条数
    @NameInMap("maxResults")
    public Long maxResults;

    // 游标,首页为空
    @NameInMap("nextToken")
    public String nextToken;

    // 开放群发任务ID
    @NameInMap("openBatchTaskId")
    public String openBatchTaskId;

    // 开放团队ID
    @NameInMap("openTeamId")
    public String openTeamId;

    public static QuerySendMsgTaskStatisticsRequest build(java.util.Map map) throws Exception {
        QuerySendMsgTaskStatisticsRequest self = new QuerySendMsgTaskStatisticsRequest();
        return TeaModel.build(map, self);
    }

    public QuerySendMsgTaskStatisticsRequest setMaxResults(Long maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Long getMaxResults() {
        return this.maxResults;
    }

    public QuerySendMsgTaskStatisticsRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

    public QuerySendMsgTaskStatisticsRequest setOpenBatchTaskId(String openBatchTaskId) {
        this.openBatchTaskId = openBatchTaskId;
        return this;
    }
    public String getOpenBatchTaskId() {
        return this.openBatchTaskId;
    }

    public QuerySendMsgTaskStatisticsRequest setOpenTeamId(String openTeamId) {
        this.openTeamId = openTeamId;
        return this;
    }
    public String getOpenTeamId() {
        return this.openTeamId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy