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.67
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 {
    /**
     * 

This parameter is required.

* * example: *

1107****2120

*/ @NameInMap("appUserId") public String appUserId; /** * example: *

1745****8777

*/ @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