/** * 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. */ /** * * @export * @interface SupportedSecurityMethod */ export interface SupportedSecurityMethod { /** * Whether this security method is selected by default * @type {boolean} * @memberof SupportedSecurityMethod */ isDefault: boolean; /** * Whether this security method is currently enabled * @type {boolean} * @memberof SupportedSecurityMethod */ isEnabled: boolean; /** * Whether this security method serves as a permanent authenticator that cannot be removed * @type {boolean} * @memberof SupportedSecurityMethod */ isPermanentAuthenticator: boolean; /** * Display position order of this security method in the list * @type {number} * @memberof SupportedSecurityMethod */ listPosition: number; } export declare function SupportedSecurityMethodFromJSON(json: any): SupportedSecurityMethod; export declare function SupportedSecurityMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedSecurityMethod; export declare function SupportedSecurityMethodToJSON(value?: SupportedSecurityMethod | null): any;