fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
40 lines • 1.41 kB
TypeScript
/**
* 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 GetCommentTextResponse
*/
export interface GetCommentTextResponse {
/**
*
* @type {string}
* @memberof GetCommentTextResponse
*/
comment?: string | null;
/**
*
* @type {APIStatus}
* @memberof GetCommentTextResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GetCommentTextResponse interface.
*/
export declare function instanceOfGetCommentTextResponse(value: object): value is GetCommentTextResponse;
export declare function GetCommentTextResponseFromJSON(json: any): GetCommentTextResponse;
export declare function GetCommentTextResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentTextResponse;
export declare function GetCommentTextResponseToJSON(json: any): GetCommentTextResponse;
export declare function GetCommentTextResponseToJSONTyped(value?: GetCommentTextResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCommentTextResponse.d.ts.map