/** * 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 MFARegisterTotpDevicePostRequest */ export interface MFARegisterTotpDevicePostRequest { /** * * @type {MFADeviceType} * @memberof MFARegisterTotpDevicePostRequest */ type: MFADeviceType; /** * The TOTP code generated by the user * @type {string} * @memberof MFARegisterTotpDevicePostRequest */ code: string; } export declare function MFARegisterTotpDevicePostRequestFromJSON(json: any): MFARegisterTotpDevicePostRequest; export declare function MFARegisterTotpDevicePostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFARegisterTotpDevicePostRequest; export declare function MFARegisterTotpDevicePostRequestToJSON(value?: MFARegisterTotpDevicePostRequest | null): any;