com.aliyun.dingtalkim_1_0.models.CreateStoreGroupConversationRequest 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 CreateStoreGroupConversationRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1107****2120
*/
@NameInMap("appUserId")
public String appUserId;
/**
* This parameter is required.
*
* example:
* store1
*/
@NameInMap("businessUniqueKey")
public String businessUniqueKey;
/**
* example:
* http://***.png
*/
@NameInMap("groupAvatar")
public String groupAvatar;
/**
* This parameter is required.
*
* example:
* 客户群
*/
@NameInMap("groupName")
public String groupName;
/**
* This parameter is required.
*
* example:
* 8d42****nkld
*/
@NameInMap("groupTemplateId")
public String groupTemplateId;
/**
* This parameter is required.
*
* example:
* 1107****2120
*/
@NameInMap("operatorId")
public String operatorId;
@NameInMap("userIds")
public java.util.List userIds;
public static CreateStoreGroupConversationRequest build(java.util.Map map) throws Exception {
CreateStoreGroupConversationRequest self = new CreateStoreGroupConversationRequest();
return TeaModel.build(map, self);
}
public CreateStoreGroupConversationRequest setAppUserId(String appUserId) {
this.appUserId = appUserId;
return this;
}
public String getAppUserId() {
return this.appUserId;
}
public CreateStoreGroupConversationRequest setBusinessUniqueKey(String businessUniqueKey) {
this.businessUniqueKey = businessUniqueKey;
return this;
}
public String getBusinessUniqueKey() {
return this.businessUniqueKey;
}
public CreateStoreGroupConversationRequest setGroupAvatar(String groupAvatar) {
this.groupAvatar = groupAvatar;
return this;
}
public String getGroupAvatar() {
return this.groupAvatar;
}
public CreateStoreGroupConversationRequest setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public CreateStoreGroupConversationRequest setGroupTemplateId(String groupTemplateId) {
this.groupTemplateId = groupTemplateId;
return this;
}
public String getGroupTemplateId() {
return this.groupTemplateId;
}
public CreateStoreGroupConversationRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public CreateStoreGroupConversationRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}