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

com.aliyun.dingtalkim_1_0.models.QueryUnReadMessageRequest 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.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class QueryUnReadMessageRequest extends TeaModel {
    // C端客户appUserId
    @NameInMap("appUserId")
    public String appUserId;

    // 群会话Id列表
    @NameInMap("openConversationIds")
    public java.util.List openConversationIds;

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

    public QueryUnReadMessageRequest setAppUserId(String appUserId) {
        this.appUserId = appUserId;
        return this;
    }
    public String getAppUserId() {
        return this.appUserId;
    }

    public QueryUnReadMessageRequest setOpenConversationIds(java.util.List openConversationIds) {
        this.openConversationIds = openConversationIds;
        return this;
    }
    public java.util.List getOpenConversationIds() {
        return this.openConversationIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy