UNPKG

fastcomments-sdk

Version:

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

91 lines 2.19 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 { FComment } from './fcomment'; import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface SaveComment200Response */ export interface SaveComment200Response { /** * * @type {ImportedAPIStatusFAILED} * @memberof SaveComment200Response */ 'status': ImportedAPIStatusFAILED; /** * * @type {FComment} * @memberof SaveComment200Response */ 'comment': FComment; /** * * @type {UserSessionInfo} * @memberof SaveComment200Response */ 'user': UserSessionInfo | null; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: object; }} * @memberof SaveComment200Response */ 'moduleData'?: { [key: string]: object; }; /** * * @type {string} * @memberof SaveComment200Response */ 'reason': string; /** * * @type {string} * @memberof SaveComment200Response */ 'code': string; /** * * @type {string} * @memberof SaveComment200Response */ 'secondaryCode'?: string; /** * * @type {number} * @memberof SaveComment200Response */ 'bannedUntil'?: number; /** * * @type {number} * @memberof SaveComment200Response */ 'maxCharacterLength'?: number; /** * * @type {string} * @memberof SaveComment200Response */ 'translatedError'?: string; /** * * @type {CustomConfigParameters} * @memberof SaveComment200Response */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=save-comment200-response.d.ts.map