UNPKG

fastcomments-sdk

Version:

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

89 lines 2.58 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 ReactFeedPostPublic200Response */ export interface ReactFeedPostPublic200Response { /** * * @type {APIStatus} * @memberof ReactFeedPostPublic200Response */ status: APIStatus; /** * * @type {string} * @memberof ReactFeedPostPublic200Response */ reactType: string; /** * * @type {boolean} * @memberof ReactFeedPostPublic200Response */ isUndo: boolean; /** * * @type {string} * @memberof ReactFeedPostPublic200Response */ reason: string; /** * * @type {string} * @memberof ReactFeedPostPublic200Response */ code: string; /** * * @type {string} * @memberof ReactFeedPostPublic200Response */ secondaryCode?: string; /** * * @type {number} * @memberof ReactFeedPostPublic200Response */ bannedUntil?: number; /** * * @type {number} * @memberof ReactFeedPostPublic200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof ReactFeedPostPublic200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof ReactFeedPostPublic200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the ReactFeedPostPublic200Response interface. */ export declare function instanceOfReactFeedPostPublic200Response(value: object): value is ReactFeedPostPublic200Response; export declare function ReactFeedPostPublic200ResponseFromJSON(json: any): ReactFeedPostPublic200Response; export declare function ReactFeedPostPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReactFeedPostPublic200Response; export declare function ReactFeedPostPublic200ResponseToJSON(json: any): ReactFeedPostPublic200Response; export declare function ReactFeedPostPublic200ResponseToJSONTyped(value?: ReactFeedPostPublic200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ReactFeedPostPublic200Response.d.ts.map