com.aliyun.dingtalkcrm_1_0.models.CreateGroupRequest 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class CreateGroupRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("groupName")
public String groupName;
@NameInMap("memberUserIds")
public String memberUserIds;
/**
* This parameter is required.
*/
@NameInMap("ownerUserId")
public String ownerUserId;
/**
* This parameter is required.
*/
@NameInMap("relationType")
public String relationType;
public static CreateGroupRequest build(java.util.Map map) throws Exception {
CreateGroupRequest self = new CreateGroupRequest();
return TeaModel.build(map, self);
}
public CreateGroupRequest setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public CreateGroupRequest setMemberUserIds(String memberUserIds) {
this.memberUserIds = memberUserIds;
return this;
}
public String getMemberUserIds() {
return this.memberUserIds;
}
public CreateGroupRequest setOwnerUserId(String ownerUserId) {
this.ownerUserId = ownerUserId;
return this;
}
public String getOwnerUserId() {
return this.ownerUserId;
}
public CreateGroupRequest setRelationType(String relationType) {
this.relationType = relationType;
return this;
}
public String getRelationType() {
return this.relationType;
}
}