cn.authing.sdk.java.dto.DeletePublicAccountsBatchDto 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.DeletePublicAccountsBatchOptionsDto;
public class DeletePublicAccountsBatchDto {
/**
* 公共账号用户 ID 列表
*/
@JsonProperty("userIds")
private List userIds;
/**
* 可选参数
*/
@JsonProperty("options")
private DeletePublicAccountsBatchOptionsDto options;
public List getUserIds() {
return userIds;
}
public void setUserIds(List userIds) {
this.userIds = userIds;
}
public DeletePublicAccountsBatchOptionsDto getOptions() {
return options;
}
public void setOptions(DeletePublicAccountsBatchOptionsDto options) {
this.options = options;
}
}