cn.authing.sdk.java.dto.CreateOrUpdateGroupReqDto 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 CreateOrUpdateGroupReqDto {
/**
* 分组类型
*/
@JsonProperty("type")
private String type;
/**
* 分组描述
*/
@JsonProperty("description")
private String description;
/**
* 分组名称
*/
@JsonProperty("name")
private String name;
/**
* 分组 code
*/
@JsonProperty("code")
private String code;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}