UNPKG

fastcomments-sdk

Version:

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

48 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 GetPageReactsResponse */ export interface GetPageReactsResponse { /** * * @type {APIStatus} * @memberof GetPageReactsResponse */ status: APIStatus; /** * * @type {{ [key: string]: number; }} * @memberof GetPageReactsResponse */ counts?: { [key: string]: number; }; /** * * @type {Array<string>} * @memberof GetPageReactsResponse */ reactedIds?: Array<string>; } /** * Check if a given object implements the GetPageReactsResponse interface. */ export declare function instanceOfGetPageReactsResponse(value: object): value is GetPageReactsResponse; export declare function GetPageReactsResponseFromJSON(json: any): GetPageReactsResponse; export declare function GetPageReactsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageReactsResponse; export declare function GetPageReactsResponseToJSON(json: any): GetPageReactsResponse; export declare function GetPageReactsResponseToJSONTyped(value?: GetPageReactsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPageReactsResponse.d.ts.map