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 DeleteV1PageReactResponse */ export interface DeleteV1PageReactResponse { /** * * @type {string} * @memberof DeleteV1PageReactResponse */ code: string; /** * * @type {APIStatus} * @memberof DeleteV1PageReactResponse */ status: APIStatus; /** * * @type {string} * @memberof DeleteV1PageReactResponse */ reason: string; /** * * @type {string} * @memberof DeleteV1PageReactResponse */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteV1PageReactResponse */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteV1PageReactResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteV1PageReactResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteV1PageReactResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteV1PageReactResponse interface. */ export declare function instanceOfDeleteV1PageReactResponse(value: object): value is DeleteV1PageReactResponse; export declare function DeleteV1PageReactResponseFromJSON(json: any): DeleteV1PageReactResponse; export declare function DeleteV1PageReactResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteV1PageReactResponse; export declare function DeleteV1PageReactResponseToJSON(json: any): DeleteV1PageReactResponse; export declare function DeleteV1PageReactResponseToJSONTyped(value?: DeleteV1PageReactResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteV1PageReactResponse.d.ts.map