UNPKG

fastcomments-sdk

Version:

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

87 lines 2.51 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 GetUserReactsPublicResponse */ export interface GetUserReactsPublicResponse { /** * * @type {APIStatus} * @memberof GetUserReactsPublicResponse */ status: APIStatus; /** * * @type {{ [key: string]: { [key: string]: boolean; }; }} * @memberof GetUserReactsPublicResponse */ reacts: { [key: string]: { [key: string]: boolean; }; }; /** * * @type {string} * @memberof GetUserReactsPublicResponse */ reason: string; /** * * @type {string} * @memberof GetUserReactsPublicResponse */ code: string; /** * * @type {string} * @memberof GetUserReactsPublicResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserReactsPublicResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserReactsPublicResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserReactsPublicResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserReactsPublicResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserReactsPublicResponse interface. */ export declare function instanceOfGetUserReactsPublicResponse(value: object): value is GetUserReactsPublicResponse; export declare function GetUserReactsPublicResponseFromJSON(json: any): GetUserReactsPublicResponse; export declare function GetUserReactsPublicResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserReactsPublicResponse; export declare function GetUserReactsPublicResponseToJSON(json: any): GetUserReactsPublicResponse; export declare function GetUserReactsPublicResponseToJSONTyped(value?: GetUserReactsPublicResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserReactsPublicResponse.d.ts.map