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

com.aliyun.dingtalkcrm_1_0.models.QueryCrmGroupChatsResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class QueryCrmGroupChatsResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

true

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

agds12

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

1000

*/ @NameInMap("totalCount") public Integer totalCount; public static QueryCrmGroupChatsResponseBody build(java.util.Map map) throws Exception { QueryCrmGroupChatsResponseBody self = new QueryCrmGroupChatsResponseBody(); return TeaModel.build(map, self); } public QueryCrmGroupChatsResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public QueryCrmGroupChatsResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryCrmGroupChatsResponseBody setResultList(java.util.List resultList) { this.resultList = resultList; return this; } public java.util.List getResultList() { return this.resultList; } public QueryCrmGroupChatsResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } public static class QueryCrmGroupChatsResponseBodyResultList extends TeaModel { /** *

This parameter is required.

* * example: *

1640239655539

*/ @NameInMap("gmtCreate") public Long gmtCreate; /** *

This parameter is required.

* * example: *

100

*/ @NameInMap("memberCount") public Integer memberCount; /** *

This parameter is required.

* * example: *

营销1群

*/ @NameInMap("name") public String name; /** *

This parameter is required.

* * example: *

afsad21

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

afsdba23

*/ @NameInMap("openGroupSetId") public String openGroupSetId; /** *

This parameter is required.

* * example: *

afds12

*/ @NameInMap("ownerUserId") public String ownerUserId; /** *

This parameter is required.

* * example: *

XX

*/ @NameInMap("ownerUserName") public String ownerUserName; public static QueryCrmGroupChatsResponseBodyResultList build(java.util.Map map) throws Exception { QueryCrmGroupChatsResponseBodyResultList self = new QueryCrmGroupChatsResponseBodyResultList(); return TeaModel.build(map, self); } public QueryCrmGroupChatsResponseBodyResultList setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } public Long getGmtCreate() { return this.gmtCreate; } public QueryCrmGroupChatsResponseBodyResultList setMemberCount(Integer memberCount) { this.memberCount = memberCount; return this; } public Integer getMemberCount() { return this.memberCount; } public QueryCrmGroupChatsResponseBodyResultList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryCrmGroupChatsResponseBodyResultList setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public QueryCrmGroupChatsResponseBodyResultList setOpenGroupSetId(String openGroupSetId) { this.openGroupSetId = openGroupSetId; return this; } public String getOpenGroupSetId() { return this.openGroupSetId; } public QueryCrmGroupChatsResponseBodyResultList setOwnerUserId(String ownerUserId) { this.ownerUserId = ownerUserId; return this; } public String getOwnerUserId() { return this.ownerUserId; } public QueryCrmGroupChatsResponseBodyResultList setOwnerUserName(String ownerUserName) { this.ownerUserName = ownerUserName; return this; } public String getOwnerUserName() { return this.ownerUserName; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy