/**
 * 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.
 */
/**
 *
 * @export
 * @interface APIPage
 */
export interface APIPage {
    /**
     *
     * @type {boolean}
     * @memberof APIPage
     */
    isClosed?: boolean;
    /**
     *
     * @type {Array<string>}
     * @memberof APIPage
     */
    accessibleByGroupIds?: Array<string>;
    /**
     *
     * @type {number}
     * @memberof APIPage
     */
    rootCommentCount: number;
    /**
     *
     * @type {number}
     * @memberof APIPage
     */
    commentCount: number;
    /**
     *
     * @type {Date}
     * @memberof APIPage
     */
    createdAt: Date;
    /**
     *
     * @type {string}
     * @memberof APIPage
     */
    title: string;
    /**
     *
     * @type {string}
     * @memberof APIPage
     */
    url?: string;
    /**
     *
     * @type {string}
     * @memberof APIPage
     */
    urlId: string;
    /**
     *
     * @type {string}
     * @memberof APIPage
     */
    id: string;
}
/**
 * Check if a given object implements the APIPage interface.
 */
export declare function instanceOfAPIPage(value: object): value is APIPage;
export declare function APIPageFromJSON(json: any): APIPage;
export declare function APIPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIPage;
export declare function APIPageToJSON(json: any): APIPage;
export declare function APIPageToJSONTyped(value?: APIPage | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APIPage.d.ts.map