/** * 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 { WaasAuthenticateResponseEncodedJwts } from './WaasAuthenticateResponseEncodedJwts'; /** * * @export * @interface WaasAuthenticateResponse */ export interface WaasAuthenticateResponse { /** * Status message describing the authentication result * @type {string} * @memberof WaasAuthenticateResponse */ message: string; /** * * @type {WaasAuthenticateResponseEncodedJwts} * @memberof WaasAuthenticateResponse */ encodedJwts: WaasAuthenticateResponseEncodedJwts; } export declare function WaasAuthenticateResponseFromJSON(json: any): WaasAuthenticateResponse; export declare function WaasAuthenticateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasAuthenticateResponse; export declare function WaasAuthenticateResponseToJSON(value?: WaasAuthenticateResponse | null): any;