fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
63 lines • 1.71 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 CreateAPIPageData
*/
export interface CreateAPIPageData {
/**
*
* @type {Array<string>}
* @memberof CreateAPIPageData
*/
accessibleByGroupIds?: Array<string>;
/**
*
* @type {number}
* @memberof CreateAPIPageData
*/
rootCommentCount?: number;
/**
*
* @type {number}
* @memberof CreateAPIPageData
*/
commentCount?: number;
/**
*
* @type {string}
* @memberof CreateAPIPageData
*/
title: string;
/**
*
* @type {string}
* @memberof CreateAPIPageData
*/
url: string;
/**
*
* @type {string}
* @memberof CreateAPIPageData
*/
urlId: string;
}
/**
* Check if a given object implements the CreateAPIPageData interface.
*/
export declare function instanceOfCreateAPIPageData(value: object): value is CreateAPIPageData;
export declare function CreateAPIPageDataFromJSON(json: any): CreateAPIPageData;
export declare function CreateAPIPageDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAPIPageData;
export declare function CreateAPIPageDataToJSON(json: any): CreateAPIPageData;
export declare function CreateAPIPageDataToJSONTyped(value?: CreateAPIPageData | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateAPIPageData.d.ts.map