UNPKG

fastcomments-sdk

Version:

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

77 lines 2.24 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 CreateV1PageReactResponse */ export interface CreateV1PageReactResponse { /** * * @type {string} * @memberof CreateV1PageReactResponse */ code: string; /** * * @type {APIStatus} * @memberof CreateV1PageReactResponse */ status: APIStatus; /** * * @type {string} * @memberof CreateV1PageReactResponse */ reason: string; /** * * @type {string} * @memberof CreateV1PageReactResponse */ secondaryCode?: string; /** * * @type {number} * @memberof CreateV1PageReactResponse */ bannedUntil?: number; /** * * @type {number} * @memberof CreateV1PageReactResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateV1PageReactResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateV1PageReactResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateV1PageReactResponse interface. */ export declare function instanceOfCreateV1PageReactResponse(value: object): value is CreateV1PageReactResponse; export declare function CreateV1PageReactResponseFromJSON(json: any): CreateV1PageReactResponse; export declare function CreateV1PageReactResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateV1PageReactResponse; export declare function CreateV1PageReactResponseToJSON(json: any): CreateV1PageReactResponse; export declare function CreateV1PageReactResponseToJSONTyped(value?: CreateV1PageReactResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateV1PageReactResponse.d.ts.map