UNPKG

fastcomments-sdk

Version:

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

84 lines 2.42 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 { DeleteCommentAction } from './DeleteCommentAction'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface DeleteComment200Response */ export interface DeleteComment200Response { /** * * @type {DeleteCommentAction} * @memberof DeleteComment200Response */ action: DeleteCommentAction; /** * * @type {APIStatus} * @memberof DeleteComment200Response */ status: APIStatus; /** * * @type {string} * @memberof DeleteComment200Response */ reason: string; /** * * @type {string} * @memberof DeleteComment200Response */ code: string; /** * * @type {string} * @memberof DeleteComment200Response */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteComment200Response */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteComment200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteComment200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteComment200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteComment200Response interface. */ export declare function instanceOfDeleteComment200Response(value: object): value is DeleteComment200Response; export declare function DeleteComment200ResponseFromJSON(json: any): DeleteComment200Response; export declare function DeleteComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteComment200Response; export declare function DeleteComment200ResponseToJSON(json: any): DeleteComment200Response; export declare function DeleteComment200ResponseToJSONTyped(value?: DeleteComment200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteComment200Response.d.ts.map