cn.authing.sdk.java.dto.CreatePublicAccountBatchReqDto 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.CreatePublicAccountOptionsDto;
import cn.authing.sdk.java.dto.CreatePublicAccountReqDto;
public class CreatePublicAccountBatchReqDto {
/**
* 公共账号列表
*/
@JsonProperty("list")
private List list;
/**
* 可选参数
*/
@JsonProperty("options")
private CreatePublicAccountOptionsDto options;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public CreatePublicAccountOptionsDto getOptions() {
return options;
}
public void setOptions(CreatePublicAccountOptionsDto options) {
this.options = options;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy