UNPKG

fastcomments-sdk

Version:

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

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