cn.authing.sdk.java.dto.ResetUserPrincipalAuthenticationInfoDto 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.ResetUserPrincipalAuthenticationInfoOptionsDto;
public class ResetUserPrincipalAuthenticationInfoDto {
/**
* 用户的唯一标志,可以是用户 ID、用户名、邮箱、手机号、externalId、在外部身份源的 ID,详情见 userIdType 字段的说明。默认为用户 id 。
*/
@JsonProperty("userId")
private String userId;
/**
* 可选参数
*/
@JsonProperty("options")
private ResetUserPrincipalAuthenticationInfoOptionsDto options;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public ResetUserPrincipalAuthenticationInfoOptionsDto getOptions() {
return options;
}
public void setOptions(ResetUserPrincipalAuthenticationInfoOptionsDto options) {
this.options = options;
}
}