com.aliyun.dingtalkindustry_1_0.models.SupplyUpdateRoleRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class SupplyUpdateRoleRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("isRoleGroup")
public Boolean isRoleGroup;
/**
* This parameter is required.
*/
@NameInMap("roleId")
public String roleId;
/**
* This parameter is required.
*/
@NameInMap("roleName")
public String roleName;
public static SupplyUpdateRoleRequest build(java.util.Map map) throws Exception {
SupplyUpdateRoleRequest self = new SupplyUpdateRoleRequest();
return TeaModel.build(map, self);
}
public SupplyUpdateRoleRequest setIsRoleGroup(Boolean isRoleGroup) {
this.isRoleGroup = isRoleGroup;
return this;
}
public Boolean getIsRoleGroup() {
return this.isRoleGroup;
}
public SupplyUpdateRoleRequest setRoleId(String roleId) {
this.roleId = roleId;
return this;
}
public String getRoleId() {
return this.roleId;
}
public SupplyUpdateRoleRequest setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
}