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

cn.authing.sdk.java.dto.CreatePublicAccountOtpDto 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 CreatePublicAccountOtpDto {
    /**
     * OTP 密钥
     */
    @JsonProperty("secret")
    private String secret;
    /**
     * OTP Recovery Code
     */
    @JsonProperty("recoveryCode")
    private String recoveryCode;

    public String getSecret() {
        return secret;
    }
    public void setSecret(String secret) {
        this.secret = secret;
    }

    public String getRecoveryCode() {
        return recoveryCode;
    }
    public void setRecoveryCode(String recoveryCode) {
        this.recoveryCode = recoveryCode;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy