com.aliyun.dingtalkim_1_0.models.CreateGroupConversationRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class CreateGroupConversationRequest extends TeaModel {
@NameInMap("appUserIds")
public java.util.List appUserIds;
/**
* example:
* http://***.png
*/
@NameInMap("groupAvatar")
public String groupAvatar;
/**
* This parameter is required.
*
* example:
* 客户群
*/
@NameInMap("groupName")
public String groupName;
/**
* This parameter is required.
*
* example:
* 1745****8777
*/
@NameInMap("groupOwnerId")
public String groupOwnerId;
/**
* example:
* 3
*/
@NameInMap("groupOwnerType")
public Integer groupOwnerType;
/**
* This parameter is required.
*
* example:
* 8d42****nkld
*/
@NameInMap("groupTemplateId")
public String groupTemplateId;
/**
* This parameter is required.
*
* example:
* 1745****8777
*/
@NameInMap("operatorId")
public String operatorId;
@NameInMap("userIds")
public java.util.List userIds;
public static CreateGroupConversationRequest build(java.util.Map map) throws Exception {
CreateGroupConversationRequest self = new CreateGroupConversationRequest();
return TeaModel.build(map, self);
}
public CreateGroupConversationRequest setAppUserIds(java.util.List appUserIds) {
this.appUserIds = appUserIds;
return this;
}
public java.util.List getAppUserIds() {
return this.appUserIds;
}
public CreateGroupConversationRequest setGroupAvatar(String groupAvatar) {
this.groupAvatar = groupAvatar;
return this;
}
public String getGroupAvatar() {
return this.groupAvatar;
}
public CreateGroupConversationRequest setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public CreateGroupConversationRequest setGroupOwnerId(String groupOwnerId) {
this.groupOwnerId = groupOwnerId;
return this;
}
public String getGroupOwnerId() {
return this.groupOwnerId;
}
public CreateGroupConversationRequest setGroupOwnerType(Integer groupOwnerType) {
this.groupOwnerType = groupOwnerType;
return this;
}
public Integer getGroupOwnerType() {
return this.groupOwnerType;
}
public CreateGroupConversationRequest setGroupTemplateId(String groupTemplateId) {
this.groupTemplateId = groupTemplateId;
return this;
}
public String getGroupTemplateId() {
return this.groupTemplateId;
}
public CreateGroupConversationRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public CreateGroupConversationRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}