/** * 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 { SupportedSecurityMethod } from './SupportedSecurityMethod'; /** * * @export * @interface SupportedSecurityMethods */ export interface SupportedSecurityMethods { /** * * @type {SupportedSecurityMethod} * @memberof SupportedSecurityMethods */ passkey?: SupportedSecurityMethod; /** * * @type {SupportedSecurityMethod} * @memberof SupportedSecurityMethods */ email?: SupportedSecurityMethod; /** * * @type {SupportedSecurityMethod} * @memberof SupportedSecurityMethods */ password?: SupportedSecurityMethod; } export declare function SupportedSecurityMethodsFromJSON(json: any): SupportedSecurityMethods; export declare function SupportedSecurityMethodsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedSecurityMethods; export declare function SupportedSecurityMethodsToJSON(value?: SupportedSecurityMethods | null): any;