
com.aliyun.dingtalkcrm_1_0.models.UpdateGroupSetRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class UpdateGroupSetRequest extends TeaModel {
@NameInMap("managerUserIds")
public String managerUserIds;
@NameInMap("memberQuota")
public Integer memberQuota;
@NameInMap("name")
public String name;
@NameInMap("notice")
public String notice;
@NameInMap("noticeToped")
public Integer noticeToped;
/**
* This parameter is required.
*/
@NameInMap("openGroupSetId")
public String openGroupSetId;
@NameInMap("ownerUserId")
public String ownerUserId;
@NameInMap("templateId")
public String templateId;
@NameInMap("welcome")
public String welcome;
public static UpdateGroupSetRequest build(java.util.Map map) throws Exception {
UpdateGroupSetRequest self = new UpdateGroupSetRequest();
return TeaModel.build(map, self);
}
public UpdateGroupSetRequest setManagerUserIds(String managerUserIds) {
this.managerUserIds = managerUserIds;
return this;
}
public String getManagerUserIds() {
return this.managerUserIds;
}
public UpdateGroupSetRequest setMemberQuota(Integer memberQuota) {
this.memberQuota = memberQuota;
return this;
}
public Integer getMemberQuota() {
return this.memberQuota;
}
public UpdateGroupSetRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateGroupSetRequest setNotice(String notice) {
this.notice = notice;
return this;
}
public String getNotice() {
return this.notice;
}
public UpdateGroupSetRequest setNoticeToped(Integer noticeToped) {
this.noticeToped = noticeToped;
return this;
}
public Integer getNoticeToped() {
return this.noticeToped;
}
public UpdateGroupSetRequest setOpenGroupSetId(String openGroupSetId) {
this.openGroupSetId = openGroupSetId;
return this;
}
public String getOpenGroupSetId() {
return this.openGroupSetId;
}
public UpdateGroupSetRequest setOwnerUserId(String ownerUserId) {
this.ownerUserId = ownerUserId;
return this;
}
public String getOwnerUserId() {
return this.ownerUserId;
}
public UpdateGroupSetRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public UpdateGroupSetRequest setWelcome(String welcome) {
this.welcome = welcome;
return this;
}
public String getWelcome() {
return this.welcome;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy