UNPKG

fastcomments-sdk

Version:

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

47 lines 1.77 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 { APIStatus } from './APIStatus'; import type { DeletedCommentResultComment } from './DeletedCommentResultComment'; /** * * @export * @interface PublicAPIDeleteCommentResponse */ export interface PublicAPIDeleteCommentResponse { /** * * @type {DeletedCommentResultComment} * @memberof PublicAPIDeleteCommentResponse */ comment?: DeletedCommentResultComment; /** * * @type {boolean} * @memberof PublicAPIDeleteCommentResponse */ hardRemoved: boolean; /** * * @type {APIStatus} * @memberof PublicAPIDeleteCommentResponse */ status: APIStatus; } /** * Check if a given object implements the PublicAPIDeleteCommentResponse interface. */ export declare function instanceOfPublicAPIDeleteCommentResponse(value: object): value is PublicAPIDeleteCommentResponse; export declare function PublicAPIDeleteCommentResponseFromJSON(json: any): PublicAPIDeleteCommentResponse; export declare function PublicAPIDeleteCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicAPIDeleteCommentResponse; export declare function PublicAPIDeleteCommentResponseToJSON(json: any): PublicAPIDeleteCommentResponse; export declare function PublicAPIDeleteCommentResponseToJSONTyped(value?: PublicAPIDeleteCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PublicAPIDeleteCommentResponse.d.ts.map