UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

40 lines 1.56 kB
/** * 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'; /** * * @export * @interface GetUserNotificationCountResponse */ export interface GetUserNotificationCountResponse { /** * * @type {APIStatus} * @memberof GetUserNotificationCountResponse */ status: APIStatus; /** * * @type {number} * @memberof GetUserNotificationCountResponse */ count: number; } /** * Check if a given object implements the GetUserNotificationCountResponse interface. */ export declare function instanceOfGetUserNotificationCountResponse(value: object): value is GetUserNotificationCountResponse; export declare function GetUserNotificationCountResponseFromJSON(json: any): GetUserNotificationCountResponse; export declare function GetUserNotificationCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserNotificationCountResponse; export declare function GetUserNotificationCountResponseToJSON(json: any): GetUserNotificationCountResponse; export declare function GetUserNotificationCountResponseToJSONTyped(value?: GetUserNotificationCountResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserNotificationCountResponse.d.ts.map