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

com.aliyun.dingtalkrobot_1_0.models.BatchSendOTORequest 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 BatchSendOTORequest extends TeaModel {
    // 消息的msgKey
    @NameInMap("msgKey")
    public String msgKey;

    // 消息体
    @NameInMap("msgParam")
    public String msgParam;

    // 机器人的robotCode
    @NameInMap("robotCode")
    public String robotCode;

    // 被推送会话人员的userId列表
    @NameInMap("userIds")
    public java.util.List userIds;

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

    public BatchSendOTORequest setMsgKey(String msgKey) {
        this.msgKey = msgKey;
        return this;
    }
    public String getMsgKey() {
        return this.msgKey;
    }

    public BatchSendOTORequest setMsgParam(String msgParam) {
        this.msgParam = msgParam;
        return this;
    }
    public String getMsgParam() {
        return this.msgParam;
    }

    public BatchSendOTORequest setRobotCode(String robotCode) {
        this.robotCode = robotCode;
        return this;
    }
    public String getRobotCode() {
        return this.robotCode;
    }

    public BatchSendOTORequest setUserIds(java.util.List userIds) {
        this.userIds = userIds;
        return this;
    }
    public java.util.List getUserIds() {
        return this.userIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy