/** * 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 RevokeAllSessionsResponse */ export interface RevokeAllSessionsResponse { /** * Status message indicating the revocation has been queued * @type {string} * @memberof RevokeAllSessionsResponse */ message: string; } export declare function RevokeAllSessionsResponseFromJSON(json: any): RevokeAllSessionsResponse; export declare function RevokeAllSessionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RevokeAllSessionsResponse; export declare function RevokeAllSessionsResponseToJSON(value?: RevokeAllSessionsResponse | null): any;