UNPKG

fastcomments-sdk

Version:

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

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