/** * 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. */ /** * Activate the TOTP secret for the user to be used in two factor authentication * @export * @interface TotpSecretActivationRequest */ export interface TotpSecretActivationRequest { /** * The id of the secret * @type {string} * @memberof TotpSecretActivationRequest */ secretId?: string; /** * The code generated by the authenticator application * @type {string} * @memberof TotpSecretActivationRequest */ totp?: string; } /** * Check if a given object implements the TotpSecretActivationRequest interface. */ export declare function instanceOfTotpSecretActivationRequest(value: object): value is TotpSecretActivationRequest; export declare function TotpSecretActivationRequestFromJSON(json: any): TotpSecretActivationRequest; export declare function TotpSecretActivationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TotpSecretActivationRequest; export declare function TotpSecretActivationRequestToJSON(json: any): TotpSecretActivationRequest; export declare function TotpSecretActivationRequestToJSONTyped(value?: TotpSecretActivationRequest | null, ignoreDiscriminator?: boolean): any;