fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.69 kB
TypeScript
/**
* fastcomments
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.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.
*/
import type { APIStatus } from './APIStatus';
import type { UserNotificationCount } from './UserNotificationCount';
/**
*
* @export
* @interface GetCachedNotificationCountResponse
*/
export interface GetCachedNotificationCountResponse {
/**
*
* @type {APIStatus}
* @memberof GetCachedNotificationCountResponse
*/
status: APIStatus;
/**
*
* @type {UserNotificationCount}
* @memberof GetCachedNotificationCountResponse
*/
data: UserNotificationCount;
}
/**
* Check if a given object implements the GetCachedNotificationCountResponse interface.
*/
export declare function instanceOfGetCachedNotificationCountResponse(value: object): value is GetCachedNotificationCountResponse;
export declare function GetCachedNotificationCountResponseFromJSON(json: any): GetCachedNotificationCountResponse;
export declare function GetCachedNotificationCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCachedNotificationCountResponse;
export declare function GetCachedNotificationCountResponseToJSON(json: any): GetCachedNotificationCountResponse;
export declare function GetCachedNotificationCountResponseToJSONTyped(value?: GetCachedNotificationCountResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCachedNotificationCountResponse.d.ts.map