UNPKG

fastcomments-sdk

Version:

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

90 lines 2.54 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 GetPagesPublic200Response */ export interface GetPagesPublic200Response { /** * * @type {string} * @memberof GetPagesPublic200Response */ nextCursor: string | null; /** * * @type {Array<PublicPage>} * @memberof GetPagesPublic200Response */ pages: Array<PublicPage>; /** * * @type {APIStatus} * @memberof GetPagesPublic200Response */ status: APIStatus; /** * * @type {string} * @memberof GetPagesPublic200Response */ reason: string; /** * * @type {string} * @memberof GetPagesPublic200Response */ code: string; /** * * @type {string} * @memberof GetPagesPublic200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetPagesPublic200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetPagesPublic200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetPagesPublic200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetPagesPublic200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetPagesPublic200Response interface. */ export declare function instanceOfGetPagesPublic200Response(value: object): value is GetPagesPublic200Response; export declare function GetPagesPublic200ResponseFromJSON(json: any): GetPagesPublic200Response; export declare function GetPagesPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPagesPublic200Response; export declare function GetPagesPublic200ResponseToJSON(json: any): GetPagesPublic200Response; export declare function GetPagesPublic200ResponseToJSONTyped(value?: GetPagesPublic200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPagesPublic200Response.d.ts.map