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

com.aliyun.dingtalkmicro_app_1_0.models.RebuildRoleScopeForAppRoleRequest 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.dingtalkmicro_app_1_0.models;

import com.aliyun.tea.*;

public class RebuildRoleScopeForAppRoleRequest extends TeaModel {
    @NameInMap("deptIdList")
    public java.util.List deptIdList;

    /**
     * 

This parameter is required.

*/ @NameInMap("opUserId") public String opUserId; /** *

This parameter is required.

*/ @NameInMap("scopeType") public String scopeType; /** *

This parameter is required.

*/ @NameInMap("scopeVersion") public Long scopeVersion; @NameInMap("userIdList") public java.util.List userIdList; public static RebuildRoleScopeForAppRoleRequest build(java.util.Map map) throws Exception { RebuildRoleScopeForAppRoleRequest self = new RebuildRoleScopeForAppRoleRequest(); return TeaModel.build(map, self); } public RebuildRoleScopeForAppRoleRequest setDeptIdList(java.util.List deptIdList) { this.deptIdList = deptIdList; return this; } public java.util.List getDeptIdList() { return this.deptIdList; } public RebuildRoleScopeForAppRoleRequest setOpUserId(String opUserId) { this.opUserId = opUserId; return this; } public String getOpUserId() { return this.opUserId; } public RebuildRoleScopeForAppRoleRequest setScopeType(String scopeType) { this.scopeType = scopeType; return this; } public String getScopeType() { return this.scopeType; } public RebuildRoleScopeForAppRoleRequest setScopeVersion(Long scopeVersion) { this.scopeVersion = scopeVersion; return this; } public Long getScopeVersion() { return this.scopeVersion; } public RebuildRoleScopeForAppRoleRequest setUserIdList(java.util.List userIdList) { this.userIdList = userIdList; return this; } public java.util.List getUserIdList() { return this.userIdList; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy