UNPKG

fastcomments-sdk

Version:

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

91 lines 2.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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetV2PageReactsResponse */ export interface GetV2PageReactsResponse { /** * * @type {Array<string>} * @memberof GetV2PageReactsResponse */ reactedIds?: Array<string>; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: number; }} * @memberof GetV2PageReactsResponse */ counts?: { [key: string]: number; }; /** * * @type {APIStatus} * @memberof GetV2PageReactsResponse */ status: APIStatus; /** * * @type {string} * @memberof GetV2PageReactsResponse */ reason: string; /** * * @type {string} * @memberof GetV2PageReactsResponse */ code: string; /** * * @type {string} * @memberof GetV2PageReactsResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetV2PageReactsResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetV2PageReactsResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetV2PageReactsResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetV2PageReactsResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetV2PageReactsResponse interface. */ export declare function instanceOfGetV2PageReactsResponse(value: object): value is GetV2PageReactsResponse; export declare function GetV2PageReactsResponseFromJSON(json: any): GetV2PageReactsResponse; export declare function GetV2PageReactsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetV2PageReactsResponse; export declare function GetV2PageReactsResponseToJSON(json: any): GetV2PageReactsResponse; export declare function GetV2PageReactsResponseToJSONTyped(value?: GetV2PageReactsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetV2PageReactsResponse.d.ts.map