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

com.aliyun.dingtalkindustry_1_0.models.SupplAddRoleRequest 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy