UNPKG

fastcomments-sdk

Version:

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

90 lines 2.46 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; import type { PublicPage } from './PublicPage'; /** * * @export * @interface GetPagesPublicResponse */ export interface GetPagesPublicResponse { /** * * @type {string} * @memberof GetPagesPublicResponse */ nextCursor: string | null; /** * * @type {Array<PublicPage>} * @memberof GetPagesPublicResponse */ pages: Array<PublicPage>; /** * * @type {APIStatus} * @memberof GetPagesPublicResponse */ status: APIStatus; /** * * @type {string} * @memberof GetPagesPublicResponse */ reason: string; /** * * @type {string} * @memberof GetPagesPublicResponse */ code: string; /** * * @type {string} * @memberof GetPagesPublicResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetPagesPublicResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetPagesPublicResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetPagesPublicResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetPagesPublicResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetPagesPublicResponse interface. */ export declare function instanceOfGetPagesPublicResponse(value: object): value is GetPagesPublicResponse; export declare function GetPagesPublicResponseFromJSON(json: any): GetPagesPublicResponse; export declare function GetPagesPublicResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPagesPublicResponse; export declare function GetPagesPublicResponseToJSON(json: any): GetPagesPublicResponse; export declare function GetPagesPublicResponseToJSONTyped(value?: GetPagesPublicResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPagesPublicResponse.d.ts.map