UNPKG

fastcomments-sdk

Version:

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

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