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

cn.authing.sdk.java.dto.ActionAuth Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class ActionAuth {
    /**
     * 数据策略授权用户 ID 列表
     */
    @JsonProperty("userIds")
    private List userIds;
    /**
     * 数据资源权限操作
     */
    @JsonProperty("action")
    private String action;

    public List getUserIds() {
        return userIds;
    }
    public void setUserIds(List userIds) {
        this.userIds = userIds;
    }

    public String getAction() {
        return action;
    }
    public void setAction(String action) {
        this.action = action;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy