com.aliyun.dingtalkindustry_1_0.models.SupplAddRoleRequest 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 SupplAddRoleRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("parentRoleGroupId")
public String parentRoleGroupId;
/**
* This parameter is required.
*/
@NameInMap("roleName")
public String roleName;
public static SupplAddRoleRequest build(java.util.Map map) throws Exception {
SupplAddRoleRequest self = new SupplAddRoleRequest();
return TeaModel.build(map, self);
}
public SupplAddRoleRequest setParentRoleGroupId(String parentRoleGroupId) {
this.parentRoleGroupId = parentRoleGroupId;
return this;
}
public String getParentRoleGroupId() {
return this.parentRoleGroupId;
}
public SupplAddRoleRequest setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
}