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