UNPKG

fastcomments-sdk

Version:

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

41 lines 1.49 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 { GifSearchResponseImagesInnerInner } from './GifSearchResponseImagesInnerInner'; /** * * @export * @interface GifSearchResponse */ export interface GifSearchResponse { /** * * @type {Array<Array<GifSearchResponseImagesInnerInner>>} * @memberof GifSearchResponse */ images: Array<Array<GifSearchResponseImagesInnerInner>>; /** * * @type {APIStatus} * @memberof GifSearchResponse */ status: APIStatus; } /** * Check if a given object implements the GifSearchResponse interface. */ export declare function instanceOfGifSearchResponse(value: object): value is GifSearchResponse; export declare function GifSearchResponseFromJSON(json: any): GifSearchResponse; export declare function GifSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GifSearchResponse; export declare function GifSearchResponseToJSON(json: any): GifSearchResponse; export declare function GifSearchResponseToJSONTyped(value?: GifSearchResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GifSearchResponse.d.ts.map