UNPKG

fastcomments-sdk

Version:

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

168 lines 3.46 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 { CommentUserHashTagInfo } from './comment-user-hash-tag-info'; import type { CommentUserMentionInfo } from './comment-user-mention-info'; import type { RecordStringStringOrNumberValue } from './record-string-string-or-number-value'; /** * * @export * @interface CommentData */ export interface CommentData { /** * * @type {number} * @memberof CommentData */ 'date': number; /** * * @type {string} * @memberof CommentData */ 'localDateString'?: string; /** * * @type {number} * @memberof CommentData */ 'localDateHours'?: number; /** * * @type {string} * @memberof CommentData */ 'commenterName': string; /** * * @type {string} * @memberof CommentData */ 'commenterEmail'?: string | null; /** * * @type {string} * @memberof CommentData */ 'commenterLink'?: string | null; /** * * @type {string} * @memberof CommentData */ 'comment': string; /** * * @type {number} * @memberof CommentData */ 'productId'?: number; /** * * @type {string} * @memberof CommentData */ 'userId'?: string | null; /** * * @type {string} * @memberof CommentData */ 'avatarSrc'?: string | null; /** * * @type {string} * @memberof CommentData */ 'parentId'?: string | null; /** * * @type {Array<CommentUserMentionInfo>} * @memberof CommentData */ 'mentions'?: Array<CommentUserMentionInfo>; /** * * @type {Array<CommentUserHashTagInfo>} * @memberof CommentData */ 'hashTags'?: Array<CommentUserHashTagInfo>; /** * * @type {string} * @memberof CommentData */ 'pageTitle'?: string; /** * * @type {boolean} * @memberof CommentData */ 'isFromMyAccountPage'?: boolean; /** * * @type {string} * @memberof CommentData */ 'url': string; /** * * @type {string} * @memberof CommentData */ 'urlId': string; /** * * @type {object} * @memberof CommentData */ 'meta'?: object; /** * * @type {Array<string>} * @memberof CommentData */ 'moderationGroupIds'?: Array<string>; /** * * @type {number} * @memberof CommentData */ 'rating'?: number; /** * * @type {boolean} * @memberof CommentData */ 'fromOfflineRestore'?: boolean; /** * * @type {number} * @memberof CommentData */ 'autoplayDelayMS'?: number; /** * * @type {Array<string>} * @memberof CommentData */ 'feedbackIds'?: Array<string>; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: RecordStringStringOrNumberValue; }} * @memberof CommentData */ 'questionValues'?: { [key: string]: RecordStringStringOrNumberValue; }; } //# sourceMappingURL=comment-data.d.ts.map