UNPKG

fastcomments-sdk

Version:

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

52 lines 1.65 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 { APIPage } from './APIPage'; /** * * @export * @interface GetPageByURLIdAPIResponse */ export interface GetPageByURLIdAPIResponse { /** * * @type {string} * @memberof GetPageByURLIdAPIResponse */ reason?: string; /** * * @type {string} * @memberof GetPageByURLIdAPIResponse */ code?: string; /** * * @type {APIPage} * @memberof GetPageByURLIdAPIResponse */ page?: APIPage; /** * * @type {string} * @memberof GetPageByURLIdAPIResponse */ status: string; } /** * Check if a given object implements the GetPageByURLIdAPIResponse interface. */ export declare function instanceOfGetPageByURLIdAPIResponse(value: object): value is GetPageByURLIdAPIResponse; export declare function GetPageByURLIdAPIResponseFromJSON(json: any): GetPageByURLIdAPIResponse; export declare function GetPageByURLIdAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageByURLIdAPIResponse; export declare function GetPageByURLIdAPIResponseToJSON(json: any): GetPageByURLIdAPIResponse; export declare function GetPageByURLIdAPIResponseToJSONTyped(value?: GetPageByURLIdAPIResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPageByURLIdAPIResponse.d.ts.map