com.aliyun.dingtalkservice_group_1_0.models.CreateGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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:
*
*/
@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;
}
}