/** * 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 ExternalAuthAssertionResponse */ export interface ExternalAuthAssertionResponse { /** * Elevated access token for step-up authentication * @type {string} * @memberof ExternalAuthAssertionResponse */ elevatedAccessToken: string; } export declare function ExternalAuthAssertionResponseFromJSON(json: any): ExternalAuthAssertionResponse; export declare function ExternalAuthAssertionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalAuthAssertionResponse; export declare function ExternalAuthAssertionResponseToJSON(value?: ExternalAuthAssertionResponse | null): any;