All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.sdk.java.dto.UserMfaRespDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class UserMfaRespDto {
    /**
     * 是否绑定了 TOTP,可选值 enabled, disabled
     */
    @JsonProperty("totpStatus")
    private String totpStatus;
    /**
     * 是否绑定了人脸 MFA,可选值 enabled, disabled
     */
    @JsonProperty("faceMfaStatus")
    private String faceMfaStatus;

    public String getTotpStatus() {
        return totpStatus;
    }
    public void setTotpStatus(String totpStatus) {
        this.totpStatus = totpStatus;
    }

    public String getFaceMfaStatus() {
        return faceMfaStatus;
    }
    public void setFaceMfaStatus(String faceMfaStatus) {
        this.faceMfaStatus = faceMfaStatus;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy