fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
57 lines • 1.44 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.
*/
/**
*
* @export
* @interface PublicPage
*/
export interface PublicPage {
/**
*
* @type {number}
* @memberof PublicPage
*/
updatedAt: number;
/**
*
* @type {number}
* @memberof PublicPage
*/
commentCount: number;
/**
*
* @type {string}
* @memberof PublicPage
*/
title: string;
/**
*
* @type {string}
* @memberof PublicPage
*/
url: string;
/**
*
* @type {string}
* @memberof PublicPage
*/
urlId: string;
}
/**
* Check if a given object implements the PublicPage interface.
*/
export declare function instanceOfPublicPage(value: object): value is PublicPage;
export declare function PublicPageFromJSON(json: any): PublicPage;
export declare function PublicPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicPage;
export declare function PublicPageToJSON(json: any): PublicPage;
export declare function PublicPageToJSONTyped(value?: PublicPage | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PublicPage.d.ts.map