UNPKG

fastcomments-sdk

Version:

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

51 lines 1.53 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. */ /** * * @export * @interface UserNotificationCount */ export interface UserNotificationCount { /** * * @type {string} * @memberof UserNotificationCount */ id: string; /** * * @type {number} * @memberof UserNotificationCount */ count: number; /** * * @type {Date} * @memberof UserNotificationCount */ createdAt: Date; /** * * @type {Date} * @memberof UserNotificationCount */ expireAt: Date; } /** * Check if a given object implements the UserNotificationCount interface. */ export declare function instanceOfUserNotificationCount(value: object): value is UserNotificationCount; export declare function UserNotificationCountFromJSON(json: any): UserNotificationCount; export declare function UserNotificationCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserNotificationCount; export declare function UserNotificationCountToJSON(json: any): UserNotificationCount; export declare function UserNotificationCountToJSONTyped(value?: UserNotificationCount | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserNotificationCount.d.ts.map