cn.authing.sdk.java.dto.TriggerSyncRiskOperationsDataDto 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 TriggerSyncRiskOperationsDataDto {
/**
* 成功执行的风险操作任务
*/
@JsonProperty("successList")
private List successList;
/**
* 执行失败的风险操作任务
*/
@JsonProperty("faildList")
private List faildList;
public List getSuccessList() {
return successList;
}
public void setSuccessList(List successList) {
this.successList = successList;
}
public List getFaildList() {
return faildList;
}
public void setFaildList(List faildList) {
this.faildList = faildList;
}
}