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

com.aliyun.dingtalkimpaas_1_0.models.CreateGroupResponseBody 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.dingtalkimpaas_1_0.models;

import com.aliyun.tea.*;

public class CreateGroupResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

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

This parameter is required.

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

This parameter is required.

*/ @NameInMap("createTime") public Long createTime; public static CreateGroupResponseBody build(java.util.Map map) throws Exception { CreateGroupResponseBody self = new CreateGroupResponseBody(); return TeaModel.build(map, self); } public CreateGroupResponseBody setChatId(String chatId) { this.chatId = chatId; return this; } public String getChatId() { return this.chatId; } public CreateGroupResponseBody setConversationId(String conversationId) { this.conversationId = conversationId; return this; } public String getConversationId() { return this.conversationId; } public CreateGroupResponseBody setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy