UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

47 lines 1.58 kB
/** * 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 { APIStatus } from './APIStatus'; import type { PublicPage } from './PublicPage'; /** * * @export * @interface GetPublicPagesResponse */ export interface GetPublicPagesResponse { /** * * @type {string} * @memberof GetPublicPagesResponse */ nextCursor: string | null; /** * * @type {Array<PublicPage>} * @memberof GetPublicPagesResponse */ pages: Array<PublicPage>; /** * * @type {APIStatus} * @memberof GetPublicPagesResponse */ status: APIStatus; } /** * Check if a given object implements the GetPublicPagesResponse interface. */ export declare function instanceOfGetPublicPagesResponse(value: object): value is GetPublicPagesResponse; export declare function GetPublicPagesResponseFromJSON(json: any): GetPublicPagesResponse; export declare function GetPublicPagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPublicPagesResponse; export declare function GetPublicPagesResponseToJSON(json: any): GetPublicPagesResponse; export declare function GetPublicPagesResponseToJSONTyped(value?: GetPublicPagesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPublicPagesResponse.d.ts.map