fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
194 lines • 5.41 kB
TypeScript
/**
* 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 './CustomConfigParameters';
import type { PublicComment } from './PublicComment';
import type { UserSessionInfo } from './UserSessionInfo';
/**
*
* @export
* @interface GetCommentsResponseWithPresencePublicComment
*/
export interface GetCommentsResponseWithPresencePublicComment {
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
statusCode?: number;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
status: string;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
code?: string;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
reason?: string;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
translatedWarning?: string;
/**
*
* @type {Array<PublicComment>}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
comments: Array<PublicComment>;
/**
*
* @type {UserSessionInfo}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
user: UserSessionInfo | null;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
urlIdClean?: string;
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
lastGenDate?: number | null;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
includesPastPages?: boolean;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isDemo?: boolean;
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
commentCount?: number;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isSiteAdmin?: boolean;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
hasBillingIssue?: boolean;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: object; }}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
moduleData?: {
[key: string]: object;
};
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
pageNumber: number;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isWhiteLabeled?: boolean;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isProd?: boolean;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isCrawler?: boolean;
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
notificationCount?: number;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
hasMore?: boolean;
/**
*
* @type {boolean}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
isClosed?: boolean;
/**
*
* @type {number}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
presencePollState?: number;
/**
*
* @type {CustomConfigParameters}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
customConfig?: CustomConfigParameters;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
urlIdWS?: string;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
userIdWS?: string;
/**
*
* @type {string}
* @memberof GetCommentsResponseWithPresencePublicComment
*/
tenantIdWS?: string;
}
/**
* Check if a given object implements the GetCommentsResponseWithPresencePublicComment interface.
*/
export declare function instanceOfGetCommentsResponseWithPresencePublicComment(value: object): value is GetCommentsResponseWithPresencePublicComment;
export declare function GetCommentsResponseWithPresencePublicCommentFromJSON(json: any): GetCommentsResponseWithPresencePublicComment;
export declare function GetCommentsResponseWithPresencePublicCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentsResponseWithPresencePublicComment;
export declare function GetCommentsResponseWithPresencePublicCommentToJSON(json: any): GetCommentsResponseWithPresencePublicComment;
export declare function GetCommentsResponseWithPresencePublicCommentToJSONTyped(value?: GetCommentsResponseWithPresencePublicComment | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCommentsResponseWithPresencePublicComment.d.ts.map