/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface MfaAdminGenerateTotpSecretRequest */ export interface MfaAdminGenerateTotpSecretRequest { /** * Entity ID on which the generated secret needs to get stored. * @type {string} * @memberof MfaAdminGenerateTotpSecretRequest */ entityId: string; /** * The unique identifier for this MFA method. * @type {string} * @memberof MfaAdminGenerateTotpSecretRequest */ methodId: string; } /** * Check if a given object implements the MfaAdminGenerateTotpSecretRequest interface. */ export declare function instanceOfMfaAdminGenerateTotpSecretRequest(value: object): value is MfaAdminGenerateTotpSecretRequest; export declare function MfaAdminGenerateTotpSecretRequestFromJSON(json: any): MfaAdminGenerateTotpSecretRequest; export declare function MfaAdminGenerateTotpSecretRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MfaAdminGenerateTotpSecretRequest; export declare function MfaAdminGenerateTotpSecretRequestToJSON(json: any): MfaAdminGenerateTotpSecretRequest; export declare function MfaAdminGenerateTotpSecretRequestToJSONTyped(value?: MfaAdminGenerateTotpSecretRequest | null, ignoreDiscriminator?: boolean): any;