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

io.quarkus.vault.runtime.client.dto.totp.VaultTOTPValidateCodeBody Maven / Gradle / Ivy

There is a newer version: 2.5.4.Final
Show newest version
package io.quarkus.vault.runtime.client.dto.totp;

import io.quarkus.vault.runtime.client.dto.VaultModel;

public class VaultTOTPValidateCodeBody implements VaultModel {

    public VaultTOTPValidateCodeBody(String code) {
        this.code = code;
    }

    public String code;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy