UNPKG

fastcomments-sdk

Version:

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

41 lines 1.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 { SetCommentTextResult } from './SetCommentTextResult'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PublicAPISetCommentTextResponse */ export interface PublicAPISetCommentTextResponse { /** * * @type {SetCommentTextResult} * @memberof PublicAPISetCommentTextResponse */ comment: SetCommentTextResult; /** * * @type {APIStatus} * @memberof PublicAPISetCommentTextResponse */ status: APIStatus; } /** * Check if a given object implements the PublicAPISetCommentTextResponse interface. */ export declare function instanceOfPublicAPISetCommentTextResponse(value: object): value is PublicAPISetCommentTextResponse; export declare function PublicAPISetCommentTextResponseFromJSON(json: any): PublicAPISetCommentTextResponse; export declare function PublicAPISetCommentTextResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicAPISetCommentTextResponse; export declare function PublicAPISetCommentTextResponseToJSON(json: any): PublicAPISetCommentTextResponse; export declare function PublicAPISetCommentTextResponseToJSONTyped(value?: PublicAPISetCommentTextResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PublicAPISetCommentTextResponse.d.ts.map