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

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

import com.aliyun.tea.*;

public class PrivateChatQueryResponseBody extends TeaModel {
    /**
     * example:
     * 

true

*/ @NameInMap("hasMore") public Boolean hasMore; /** * example: *

Kna29Ra5pdJznx1ghavbumkQKwDzgfxZLapw55G7x0Q=

*/ @NameInMap("nextToken") public String nextToken; @NameInMap("readUserIds") public java.util.List readUserIds; /** * example: *

SUCCESS

*/ @NameInMap("sendStatus") public String sendStatus; public static PrivateChatQueryResponseBody build(java.util.Map map) throws Exception { PrivateChatQueryResponseBody self = new PrivateChatQueryResponseBody(); return TeaModel.build(map, self); } public PrivateChatQueryResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public PrivateChatQueryResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public PrivateChatQueryResponseBody setReadUserIds(java.util.List readUserIds) { this.readUserIds = readUserIds; return this; } public java.util.List getReadUserIds() { return this.readUserIds; } public PrivateChatQueryResponseBody setSendStatus(String sendStatus) { this.sendStatus = sendStatus; return this; } public String getSendStatus() { return this.sendStatus; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy