cn.authing.sdk.java.dto.UpdatePublicAccountBatchReqDto 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.UpdatePublicAccountBatchOptionsDto;
import cn.authing.sdk.java.dto.UpdatePublicAccountInfoDto;
public class UpdatePublicAccountBatchReqDto {
/**
* 公共账号列表
*/
@JsonProperty("list")
private List list;
/**
* 可选参数
*/
@JsonProperty("options")
private UpdatePublicAccountBatchOptionsDto options;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public UpdatePublicAccountBatchOptionsDto getOptions() {
return options;
}
public void setOptions(UpdatePublicAccountBatchOptionsDto options) {
this.options = options;
}
}