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

com.aliyun.dingtalkrobot_1_0.models.BatchOTOQueryResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.50
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 BatchOTOQueryResponseBody extends TeaModel {
    // 消息已读情况
    @NameInMap("messageReadInfoList")
    public java.util.List messageReadInfoList;

    // 消息发送状态
    @NameInMap("sendStatus")
    public String sendStatus;

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

    public BatchOTOQueryResponseBody setMessageReadInfoList(java.util.List messageReadInfoList) {
        this.messageReadInfoList = messageReadInfoList;
        return this;
    }
    public java.util.List getMessageReadInfoList() {
        return this.messageReadInfoList;
    }

    public BatchOTOQueryResponseBody setSendStatus(String sendStatus) {
        this.sendStatus = sendStatus;
        return this;
    }
    public String getSendStatus() {
        return this.sendStatus;
    }

    public static class BatchOTOQueryResponseBodyMessageReadInfoList extends TeaModel {
        // 姓名
        @NameInMap("name")
        public String name;

        // 已读状态
        @NameInMap("readStatus")
        public String readStatus;

        // 已读时间
        @NameInMap("readTimestamp")
        public Long readTimestamp;

        // 工号
        @NameInMap("userId")
        public String userId;

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

        public BatchOTOQueryResponseBodyMessageReadInfoList setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

        public BatchOTOQueryResponseBodyMessageReadInfoList setReadStatus(String readStatus) {
            this.readStatus = readStatus;
            return this;
        }
        public String getReadStatus() {
            return this.readStatus;
        }

        public BatchOTOQueryResponseBodyMessageReadInfoList setReadTimestamp(Long readTimestamp) {
            this.readTimestamp = readTimestamp;
            return this;
        }
        public Long getReadTimestamp() {
            return this.readTimestamp;
        }

        public BatchOTOQueryResponseBodyMessageReadInfoList setUserId(String userId) {
            this.userId = userId;
            return this;
        }
        public String getUserId() {
            return this.userId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy