UNPKG

fastcomments-sdk

Version:

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

90 lines 2.71 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'; import type { DeletedCommentResultComment } from './DeletedCommentResultComment'; /** * * @export * @interface DeleteCommentPublic200Response */ export interface DeleteCommentPublic200Response { /** * * @type {DeletedCommentResultComment} * @memberof DeleteCommentPublic200Response */ comment?: DeletedCommentResultComment; /** * * @type {boolean} * @memberof DeleteCommentPublic200Response */ hardRemoved: boolean; /** * * @type {APIStatus} * @memberof DeleteCommentPublic200Response */ status: APIStatus; /** * * @type {string} * @memberof DeleteCommentPublic200Response */ reason: string; /** * * @type {string} * @memberof DeleteCommentPublic200Response */ code: string; /** * * @type {string} * @memberof DeleteCommentPublic200Response */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteCommentPublic200Response */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteCommentPublic200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteCommentPublic200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteCommentPublic200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteCommentPublic200Response interface. */ export declare function instanceOfDeleteCommentPublic200Response(value: object): value is DeleteCommentPublic200Response; export declare function DeleteCommentPublic200ResponseFromJSON(json: any): DeleteCommentPublic200Response; export declare function DeleteCommentPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteCommentPublic200Response; export declare function DeleteCommentPublic200ResponseToJSON(json: any): DeleteCommentPublic200Response; export declare function DeleteCommentPublic200ResponseToJSONTyped(value?: DeleteCommentPublic200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteCommentPublic200Response.d.ts.map