UNPKG

fastcomments-sdk

Version:

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

84 lines 2.5 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 GetGifsSearch200Response */ export interface GetGifsSearch200Response { /** * * @type {Array<Array<GifSearchResponseImagesInnerInner>>} * @memberof GetGifsSearch200Response */ images: Array<Array<GifSearchResponseImagesInnerInner>>; /** * * @type {APIStatus} * @memberof GetGifsSearch200Response */ status: APIStatus; /** * * @type {string} * @memberof GetGifsSearch200Response */ code: string; /** * * @type {string} * @memberof GetGifsSearch200Response */ reason: string; /** * * @type {string} * @memberof GetGifsSearch200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetGifsSearch200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetGifsSearch200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetGifsSearch200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetGifsSearch200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetGifsSearch200Response interface. */ export declare function instanceOfGetGifsSearch200Response(value: object): value is GetGifsSearch200Response; export declare function GetGifsSearch200ResponseFromJSON(json: any): GetGifsSearch200Response; export declare function GetGifsSearch200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGifsSearch200Response; export declare function GetGifsSearch200ResponseToJSON(json: any): GetGifsSearch200Response; export declare function GetGifsSearch200ResponseToJSONTyped(value?: GetGifsSearch200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetGifsSearch200Response.d.ts.map