UNPKG

fastcomments-sdk

Version:

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

41 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. */ import type { UserNotification } from './UserNotification'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetNotificationsResponse */ export interface GetNotificationsResponse { /** * * @type {APIStatus} * @memberof GetNotificationsResponse */ status: APIStatus; /** * * @type {Array<UserNotification>} * @memberof GetNotificationsResponse */ notifications: Array<UserNotification>; } /** * Check if a given object implements the GetNotificationsResponse interface. */ export declare function instanceOfGetNotificationsResponse(value: object): value is GetNotificationsResponse; export declare function GetNotificationsResponseFromJSON(json: any): GetNotificationsResponse; export declare function GetNotificationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotificationsResponse; export declare function GetNotificationsResponseToJSON(json: any): GetNotificationsResponse; export declare function GetNotificationsResponseToJSONTyped(value?: GetNotificationsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetNotificationsResponse.d.ts.map