/** * 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 ExternalJwtCheckResponse */ export interface ExternalJwtCheckResponse { /** * Indicates if the JWT is valid * @type {boolean} * @memberof ExternalJwtCheckResponse */ valid: boolean; /** * List of error messages if the JWT is invalid * @type {Array} * @memberof ExternalJwtCheckResponse */ errors?: Array; } export declare function ExternalJwtCheckResponseFromJSON(json: any): ExternalJwtCheckResponse; export declare function ExternalJwtCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalJwtCheckResponse; export declare function ExternalJwtCheckResponseToJSON(value?: ExternalJwtCheckResponse | null): any;