/** * 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. */ /** * In order to download a file the user will need to enable two factor authentication. * @export * @interface EnableTwoFa */ export interface EnableTwoFa { /** * * @type {string} * @memberof EnableTwoFa */ concreteType: EnableTwoFaConcreteTypeEnum; /** * The ID of the first access requirement that requires two factor authentication. * @type {number} * @memberof EnableTwoFa */ accessRequirementId?: number; } /** * @export */ export declare const EnableTwoFaConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_EnableTwoFa: "org.sagebionetworks.repo.model.download.EnableTwoFa"; }; export type EnableTwoFaConcreteTypeEnum = typeof EnableTwoFaConcreteTypeEnum[keyof typeof EnableTwoFaConcreteTypeEnum]; /** * Check if a given object implements the EnableTwoFa interface. */ export declare function instanceOfEnableTwoFa(value: object): value is EnableTwoFa; export declare function EnableTwoFaFromJSON(json: any): EnableTwoFa; export declare function EnableTwoFaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnableTwoFa; export declare function EnableTwoFaToJSON(json: any): EnableTwoFa; export declare function EnableTwoFaToJSONTyped(value?: EnableTwoFa | null, ignoreDiscriminator?: boolean): any;