UNPKG

fastcomments-sdk

Version:

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

97 lines 2.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 { CustomConfigParameters } from './custom-config-parameters'; import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed'; import type { PublicComment } from './public-comment'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface CreateCommentPublic200Response */ export interface CreateCommentPublic200Response { /** * * @type {ImportedAPIStatusFAILED} * @memberof CreateCommentPublic200Response */ 'status': ImportedAPIStatusFAILED; /** * * @type {PublicComment} * @memberof CreateCommentPublic200Response */ 'comment': PublicComment; /** * * @type {UserSessionInfo} * @memberof CreateCommentPublic200Response */ 'user': UserSessionInfo | null; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: object; }} * @memberof CreateCommentPublic200Response */ 'moduleData'?: { [key: string]: object; }; /** * * @type {string} * @memberof CreateCommentPublic200Response */ 'userIdWS'?: string; /** * * @type {string} * @memberof CreateCommentPublic200Response */ 'reason': string; /** * * @type {string} * @memberof CreateCommentPublic200Response */ 'code': string; /** * * @type {string} * @memberof CreateCommentPublic200Response */ 'secondaryCode'?: string; /** * * @type {number} * @memberof CreateCommentPublic200Response */ 'bannedUntil'?: number; /** * * @type {number} * @memberof CreateCommentPublic200Response */ 'maxCharacterLength'?: number; /** * * @type {string} * @memberof CreateCommentPublic200Response */ 'translatedError'?: string; /** * * @type {CustomConfigParameters} * @memberof CreateCommentPublic200Response */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=create-comment-public200-response.d.ts.map