fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
40 lines • 1.39 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 { NotificationType } from './NotificationType';
/**
*
* @export
* @interface NotificationAndCount
*/
export interface NotificationAndCount {
/**
*
* @type {NotificationType}
* @memberof NotificationAndCount
*/
type: NotificationType;
/**
*
* @type {number}
* @memberof NotificationAndCount
*/
count: number;
}
/**
* Check if a given object implements the NotificationAndCount interface.
*/
export declare function instanceOfNotificationAndCount(value: object): value is NotificationAndCount;
export declare function NotificationAndCountFromJSON(json: any): NotificationAndCount;
export declare function NotificationAndCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationAndCount;
export declare function NotificationAndCountToJSON(json: any): NotificationAndCount;
export declare function NotificationAndCountToJSONTyped(value?: NotificationAndCount | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=NotificationAndCount.d.ts.map