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

com.aliyun.dingtalkrobot_1_0.models.BatchSendOTOResponseBody 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.dingtalkrobot_1_0.models;

import com.aliyun.tea.*;

public class BatchSendOTOResponseBody extends TeaModel {
    // 推送频繁,被限流的用户userId列表
    @NameInMap("flowControlledStaffIdList")
    public java.util.List flowControlledStaffIdList;

    // 无效的用户userId列表
    @NameInMap("invalidStaffIdList")
    public java.util.List invalidStaffIdList;

    // 消息id
    @NameInMap("processQueryKey")
    public String processQueryKey;

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

    public BatchSendOTOResponseBody setFlowControlledStaffIdList(java.util.List flowControlledStaffIdList) {
        this.flowControlledStaffIdList = flowControlledStaffIdList;
        return this;
    }
    public java.util.List getFlowControlledStaffIdList() {
        return this.flowControlledStaffIdList;
    }

    public BatchSendOTOResponseBody setInvalidStaffIdList(java.util.List invalidStaffIdList) {
        this.invalidStaffIdList = invalidStaffIdList;
        return this;
    }
    public java.util.List getInvalidStaffIdList() {
        return this.invalidStaffIdList;
    }

    public BatchSendOTOResponseBody setProcessQueryKey(String processQueryKey) {
        this.processQueryKey = processQueryKey;
        return this;
    }
    public String getProcessQueryKey() {
        return this.processQueryKey;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy