/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { MFADeviceType } from './MFADeviceType'; /** * * @export * @interface MFARegisterTotpDeviceGetResponse */ export interface MFARegisterTotpDeviceGetResponse { /** * * @type {string} * @memberof MFARegisterTotpDeviceGetResponse */ id: string; /** * * @type {MFADeviceType} * @memberof MFARegisterTotpDeviceGetResponse */ type: MFADeviceType; /** * The secret key for the TOTP device * @type {string} * @memberof MFARegisterTotpDeviceGetResponse */ secret: string; /** * The OTP Auth URI * @type {string} * @memberof MFARegisterTotpDeviceGetResponse */ uri: string; } export declare function MFARegisterTotpDeviceGetResponseFromJSON(json: any): MFARegisterTotpDeviceGetResponse; export declare function MFARegisterTotpDeviceGetResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFARegisterTotpDeviceGetResponse; export declare function MFARegisterTotpDeviceGetResponseToJSON(value?: MFARegisterTotpDeviceGetResponse | null): any;