/** * 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 RealtimeAuthTokenResponse */ export interface RealtimeAuthTokenResponse { /** * Short-lived JWT for subscribing to realtime channels. * @type {string} * @memberof RealtimeAuthTokenResponse */ token: string; } export declare function RealtimeAuthTokenResponseFromJSON(json: any): RealtimeAuthTokenResponse; export declare function RealtimeAuthTokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RealtimeAuthTokenResponse; export declare function RealtimeAuthTokenResponseToJSON(value?: RealtimeAuthTokenResponse | null): any;