fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
176 lines • 4.55 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 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 {string}
* @memberof GetCommentsResponsePublicComment
*/
translatedWarning?: 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;
}
/**
* Check if a given object implements the GetCommentsResponsePublicComment interface.
*/
export declare function instanceOfGetCommentsResponsePublicComment(value: object): value is GetCommentsResponsePublicComment;
export declare function GetCommentsResponsePublicCommentFromJSON(json: any): GetCommentsResponsePublicComment;
export declare function GetCommentsResponsePublicCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentsResponsePublicComment;
export declare function GetCommentsResponsePublicCommentToJSON(json: any): GetCommentsResponsePublicComment;
export declare function GetCommentsResponsePublicCommentToJSONTyped(value?: GetCommentsResponsePublicComment | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCommentsResponsePublicComment.d.ts.map