cn.authing.sdk.java.dto.CheckPermissionArrayResourceDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CheckPermissionArrayResourceDto {
/**
* 数组数据资源路径列表,
*/
@JsonProperty("resources")
private List resources;
/**
* 数据资源权限操作, read、get、write 等动作
*/
@JsonProperty("action")
private String action;
public List getResources() {
return resources;
}
public void setResources(List resources) {
this.resources = resources;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
}