All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.SupplyUpdateRoleRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy