/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A list of recovery codes that can be used as a backup in place of TOTPs when performing two factor authentication * @export * @interface TwoFactorAuthRecoveryCodes */ export interface TwoFactorAuthRecoveryCodes { /** * * @type {Array} * @memberof TwoFactorAuthRecoveryCodes */ codes?: Array; } /** * Check if a given object implements the TwoFactorAuthRecoveryCodes interface. */ export declare function instanceOfTwoFactorAuthRecoveryCodes(value: object): value is TwoFactorAuthRecoveryCodes; export declare function TwoFactorAuthRecoveryCodesFromJSON(json: any): TwoFactorAuthRecoveryCodes; export declare function TwoFactorAuthRecoveryCodesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TwoFactorAuthRecoveryCodes; export declare function TwoFactorAuthRecoveryCodesToJSON(json: any): TwoFactorAuthRecoveryCodes; export declare function TwoFactorAuthRecoveryCodesToJSONTyped(value?: TwoFactorAuthRecoveryCodes | null, ignoreDiscriminator?: boolean): any;