UNPKG

fastcomments-sdk

Version:

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

40 lines 1.4 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'; /** * * @export * @interface GifSearchInternalError */ export interface GifSearchInternalError { /** * * @type {string} * @memberof GifSearchInternalError */ code: string; /** * * @type {APIStatus} * @memberof GifSearchInternalError */ status: APIStatus; } /** * Check if a given object implements the GifSearchInternalError interface. */ export declare function instanceOfGifSearchInternalError(value: object): value is GifSearchInternalError; export declare function GifSearchInternalErrorFromJSON(json: any): GifSearchInternalError; export declare function GifSearchInternalErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): GifSearchInternalError; export declare function GifSearchInternalErrorToJSON(json: any): GifSearchInternalError; export declare function GifSearchInternalErrorToJSONTyped(value?: GifSearchInternalError | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GifSearchInternalError.d.ts.map