UNPKG

fastcomments-sdk

Version:

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

46 lines 1.68 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'; /** * * @export * @interface PublicAPIGetCommentTextResponse */ export interface PublicAPIGetCommentTextResponse { /** * * @type {APIStatus} * @memberof PublicAPIGetCommentTextResponse */ status: APIStatus; /** * * @type {string} * @memberof PublicAPIGetCommentTextResponse */ commentText: string; /** * * @type {string} * @memberof PublicAPIGetCommentTextResponse */ sanitizedCommentText: string; } /** * Check if a given object implements the PublicAPIGetCommentTextResponse interface. */ export declare function instanceOfPublicAPIGetCommentTextResponse(value: object): value is PublicAPIGetCommentTextResponse; export declare function PublicAPIGetCommentTextResponseFromJSON(json: any): PublicAPIGetCommentTextResponse; export declare function PublicAPIGetCommentTextResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicAPIGetCommentTextResponse; export declare function PublicAPIGetCommentTextResponseToJSON(json: any): PublicAPIGetCommentTextResponse; export declare function PublicAPIGetCommentTextResponseToJSONTyped(value?: PublicAPIGetCommentTextResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PublicAPIGetCommentTextResponse.d.ts.map