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

com.aliyun.dingtalkmicro_app_1_0.models.RemoveMemberForAppRoleRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
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 RemoveMemberForAppRoleRequest extends TeaModel {
    // 部门id列表
    @NameInMap("deptIdList")
    public java.util.List deptIdList;

    // 执行用户userId
    @NameInMap("opUserId")
    public String opUserId;

    // 角色范围版本号
    @NameInMap("scopeVersion")
    public Long scopeVersion;

    // 员工userId列表
    @NameInMap("userIdList")
    public java.util.List userIdList;

    public static RemoveMemberForAppRoleRequest build(java.util.Map map) throws Exception {
        RemoveMemberForAppRoleRequest self = new RemoveMemberForAppRoleRequest();
        return TeaModel.build(map, self);
    }

    public RemoveMemberForAppRoleRequest setDeptIdList(java.util.List deptIdList) {
        this.deptIdList = deptIdList;
        return this;
    }
    public java.util.List getDeptIdList() {
        return this.deptIdList;
    }

    public RemoveMemberForAppRoleRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

    public RemoveMemberForAppRoleRequest setScopeVersion(Long scopeVersion) {
        this.scopeVersion = scopeVersion;
        return this;
    }
    public Long getScopeVersion() {
        return this.scopeVersion;
    }

    public RemoveMemberForAppRoleRequest 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