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

com.aliyun.dingtalkimpaas_1_0.models.CreateTrustGroupResponseBody 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 CreateTrustGroupResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy