cn.authing.sdk.java.dto.ListResourceTargetsDtoResp 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;
import cn.authing.sdk.java.dto.ActionAuth;
public class ListResourceTargetsDtoResp {
/**
* 资源路径
*/
@JsonProperty("resource")
private String resource;
/**
* 数据资源权限操作列表
*/
@JsonProperty("actionAuthList")
private List actionAuthList;
public String getResource() {
return resource;
}
public void setResource(String resource) {
this.resource = resource;
}
public List getActionAuthList() {
return actionAuthList;
}
public void setActionAuthList(List actionAuthList) {
this.actionAuthList = actionAuthList;
}
}