UNPKG

fastcomments-sdk

Version:

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

90 lines 2.64 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 DeleteCommentPublicResponse */ export interface DeleteCommentPublicResponse { /** * * @type {DeletedCommentResultComment} * @memberof DeleteCommentPublicResponse */ comment?: DeletedCommentResultComment; /** * * @type {boolean} * @memberof DeleteCommentPublicResponse */ hardRemoved: boolean; /** * * @type {APIStatus} * @memberof DeleteCommentPublicResponse */ status: APIStatus; /** * * @type {string} * @memberof DeleteCommentPublicResponse */ reason: string; /** * * @type {string} * @memberof DeleteCommentPublicResponse */ code: string; /** * * @type {string} * @memberof DeleteCommentPublicResponse */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteCommentPublicResponse */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteCommentPublicResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteCommentPublicResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteCommentPublicResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteCommentPublicResponse interface. */ export declare function instanceOfDeleteCommentPublicResponse(value: object): value is DeleteCommentPublicResponse; export declare function DeleteCommentPublicResponseFromJSON(json: any): DeleteCommentPublicResponse; export declare function DeleteCommentPublicResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteCommentPublicResponse; export declare function DeleteCommentPublicResponseToJSON(json: any): DeleteCommentPublicResponse; export declare function DeleteCommentPublicResponseToJSONTyped(value?: DeleteCommentPublicResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteCommentPublicResponse.d.ts.map