/** * 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 { JwtVerifiedCredentialFormatEnum } from './JwtVerifiedCredentialFormatEnum'; /** * * @export * @interface StepUpCredential */ export interface StepUpCredential { /** * The unique identifier of the credential * @type {string} * @memberof StepUpCredential */ id: string; /** * * @type {JwtVerifiedCredentialFormatEnum} * @memberof StepUpCredential */ format: JwtVerifiedCredentialFormatEnum; /** * The specific credential type (e.g. totp, passkey). Distinguishes MFA device types that share the same format. * @type {string} * @memberof StepUpCredential */ type?: string; /** * The user-friendly name of the credential * @type {string} * @memberof StepUpCredential */ alias?: string; } export declare function StepUpCredentialFromJSON(json: any): StepUpCredential; export declare function StepUpCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): StepUpCredential; export declare function StepUpCredentialToJSON(value?: StepUpCredential | null): any;