/** * Athena API * REST API for the Athena system * * 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 MessageCountResponse */ export interface MessageCountResponse { /** * * @type {number} * @memberof MessageCountResponse */ count: number; } /** * Check if a given object implements the MessageCountResponse interface. */ export declare function instanceOfMessageCountResponse(value: object): value is MessageCountResponse; export declare function MessageCountResponseFromJSON(json: any): MessageCountResponse; export declare function MessageCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessageCountResponse; export declare function MessageCountResponseToJSON(json: any): MessageCountResponse; export declare function MessageCountResponseToJSONTyped(value?: MessageCountResponse | null, ignoreDiscriminator?: boolean): any;