UNPKG

fastcomments-sdk

Version:

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

48 lines 1.27 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 { FComment } from './fcomment'; import type { ImportedAPIStatusSUCCESS } from './imported-apistatus-success'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface SaveCommentResponse */ export interface SaveCommentResponse { /** * * @type {ImportedAPIStatusSUCCESS} * @memberof SaveCommentResponse */ 'status': ImportedAPIStatusSUCCESS; /** * * @type {FComment} * @memberof SaveCommentResponse */ 'comment': FComment; /** * * @type {UserSessionInfo} * @memberof SaveCommentResponse */ 'user': UserSessionInfo | null; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: any; }} * @memberof SaveCommentResponse */ 'moduleData'?: { [key: string]: any; }; } //# sourceMappingURL=save-comment-response.d.ts.map