cn.authing.sdk.java.dto.SelfUnlockAccountConfigDto 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 SelfUnlockAccountConfigDto {
/**
* 是否允许用户自助解锁账号。
*/
@JsonProperty("enabled")
private Boolean enabled;
/**
* 自助解锁方式,目前支持原密码 + 验证码和验证码两种方式。
*/
@JsonProperty("strategy")
private String strategy;
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public String getStrategy() {
return strategy;
}
public void setStrategy(String strategy) {
this.strategy = strategy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy