/** * 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. */ /** * Object containing the full and minified JWT tokens for the authenticated session * @export * @interface WaasAuthenticateResponseEncodedJwts */ export interface WaasAuthenticateResponseEncodedJwts { /** * * @type {string} * @memberof WaasAuthenticateResponseEncodedJwts */ jwt?: string; /** * * @type {string} * @memberof WaasAuthenticateResponseEncodedJwts */ minifiedJwt?: string; } export declare function WaasAuthenticateResponseEncodedJwtsFromJSON(json: any): WaasAuthenticateResponseEncodedJwts; export declare function WaasAuthenticateResponseEncodedJwtsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasAuthenticateResponseEncodedJwts; export declare function WaasAuthenticateResponseEncodedJwtsToJSON(value?: WaasAuthenticateResponseEncodedJwts | null): any;