/** * 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 { StepUpCredential } from './StepUpCredential'; /** * * @export * @interface StepUpCheckResponse */ export interface StepUpCheckResponse { /** * Whether step-up authentication is required for the given scope * @type {boolean} * @memberof StepUpCheckResponse */ isRequired: boolean; /** * The credentials available for step-up authentication. Empty if isRequired is false. * @type {Array} * @memberof StepUpCheckResponse */ credentials: Array; /** * The recommended default credential to use for step-up. For reauth this is the sign-in credential; for MFA this is the default or most recently added device. * @type {string} * @memberof StepUpCheckResponse */ defaultCredentialId?: string; } export declare function StepUpCheckResponseFromJSON(json: any): StepUpCheckResponse; export declare function StepUpCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StepUpCheckResponse; export declare function StepUpCheckResponseToJSON(value?: StepUpCheckResponse | null): any;