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

cn.authing.sdk.java.dto.OtpSecretRespDto 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 OtpSecretRespDto {
    /**
     * MFA OTP 秘钥
     */
    @JsonProperty("secret")
    private String secret;

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



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy