UNPKG

fastcomments-sdk

Version:

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

41 lines 1.44 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 { APIComment } from './APIComment'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface APIGetCommentResponse */ export interface APIGetCommentResponse { /** * * @type {APIStatus} * @memberof APIGetCommentResponse */ status: APIStatus; /** * * @type {APIComment} * @memberof APIGetCommentResponse */ comment: APIComment; } /** * Check if a given object implements the APIGetCommentResponse interface. */ export declare function instanceOfAPIGetCommentResponse(value: object): value is APIGetCommentResponse; export declare function APIGetCommentResponseFromJSON(json: any): APIGetCommentResponse; export declare function APIGetCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIGetCommentResponse; export declare function APIGetCommentResponseToJSON(json: any): APIGetCommentResponse; export declare function APIGetCommentResponseToJSONTyped(value?: APIGetCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APIGetCommentResponse.d.ts.map