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

com.aliyun.dingtalkcrm_1_0.models.JoinGroupSetResponseBody 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class JoinGroupSetResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

abc123

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

This parameter is required.

* * example: *

abc123

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy