io.quarkus.vault.runtime.client.dto.totp.VaultTOTPValidateCodeBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault-model Show documentation
Show all versions of quarkus-vault-model Show documentation
Hashicorp Vault API model classes
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