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

com.aliyun.dingtalkservice_group_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.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class CreateGroupResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

http://qr.dingtalk.com/xxxxx

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

This parameter is required.

* * example: *

cidxxxxxx==

*/ @NameInMap("openConversationId") public String openConversationId; public static CreateGroupResponseBody build(java.util.Map map) throws Exception { CreateGroupResponseBody self = new CreateGroupResponseBody(); return TeaModel.build(map, self); } public CreateGroupResponseBody setGroupUrl(String groupUrl) { this.groupUrl = groupUrl; return this; } public String getGroupUrl() { return this.groupUrl; } public CreateGroupResponseBody setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy