UNPKG

fastcomments-sdk

Version:

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

162 lines 3.74 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 { PublicComment } from './public-comment'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface GetCommentsResponsePublicComment */ export interface GetCommentsResponsePublicComment { /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'statusCode'?: number; /** * * @type {string} * @memberof GetCommentsResponsePublicComment */ 'status': string; /** * * @type {string} * @memberof GetCommentsResponsePublicComment */ 'code'?: string; /** * * @type {string} * @memberof GetCommentsResponsePublicComment */ 'reason'?: string; /** * * @type {Array<PublicComment>} * @memberof GetCommentsResponsePublicComment */ 'comments': Array<PublicComment>; /** * * @type {UserSessionInfo} * @memberof GetCommentsResponsePublicComment */ 'user': UserSessionInfo | null; /** * * @type {string} * @memberof GetCommentsResponsePublicComment */ 'urlIdClean'?: string; /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'lastGenDate'?: number | null; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'includesPastPages'?: boolean; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isDemo'?: boolean; /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'commentCount'?: number; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isSiteAdmin'?: boolean; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'hasBillingIssue'?: boolean; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: any; }} * @memberof GetCommentsResponsePublicComment */ 'moduleData'?: { [key: string]: any; }; /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'pageNumber': number; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isWhiteLabeled'?: boolean; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isProd'?: boolean; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isCrawler'?: boolean; /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'notificationCount'?: number; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'hasMore'?: boolean; /** * * @type {boolean} * @memberof GetCommentsResponsePublicComment */ 'isClosed'?: boolean; /** * * @type {number} * @memberof GetCommentsResponsePublicComment */ 'presencePollState'?: number; /** * * @type {CustomConfigParameters} * @memberof GetCommentsResponsePublicComment */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=get-comments-response-public-comment.d.ts.map