UNPKG

fastcomments-sdk

Version:

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

84 lines 2.34 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 { GifSearchResponseImagesInnerInner } from './GifSearchResponseImagesInnerInner'; /** * * @export * @interface Search200Response */ export interface Search200Response { /** * * @type {Array<Array<GifSearchResponseImagesInnerInner>>} * @memberof Search200Response */ images: Array<Array<GifSearchResponseImagesInnerInner>>; /** * * @type {APIStatus} * @memberof Search200Response */ status: APIStatus; /** * * @type {string} * @memberof Search200Response */ code: string; /** * * @type {string} * @memberof Search200Response */ reason: string; /** * * @type {string} * @memberof Search200Response */ secondaryCode?: string; /** * * @type {number} * @memberof Search200Response */ bannedUntil?: number; /** * * @type {number} * @memberof Search200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof Search200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof Search200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the Search200Response interface. */ export declare function instanceOfSearch200Response(value: object): value is Search200Response; export declare function Search200ResponseFromJSON(json: any): Search200Response; export declare function Search200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Search200Response; export declare function Search200ResponseToJSON(json: any): Search200Response; export declare function Search200ResponseToJSONTyped(value?: Search200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Search200Response.d.ts.map