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