UNPKG

fastcomments-sdk

Version:

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

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