cn.authing.sdk.java.dto.CreateNamespacesBatchItemDto 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 CreateNamespacesBatchItemDto {
/**
* 权限分组唯一标志符
*/
@JsonProperty("code")
private String code;
/**
* 权限分组名称
*/
@JsonProperty("name")
private String name;
/**
* 权限分组描述信息
*/
@JsonProperty("description")
private String description;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}