fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.43 kB
TypeScript
/**
* 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 GetGifsSearchResponse
*/
export interface GetGifsSearchResponse {
/**
*
* @type {Array<Array<GifSearchResponseImagesInnerInner>>}
* @memberof GetGifsSearchResponse
*/
images: Array<Array<GifSearchResponseImagesInnerInner>>;
/**
*
* @type {APIStatus}
* @memberof GetGifsSearchResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetGifsSearchResponse
*/
code: string;
/**
*
* @type {string}
* @memberof GetGifsSearchResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof GetGifsSearchResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetGifsSearchResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetGifsSearchResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetGifsSearchResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetGifsSearchResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetGifsSearchResponse interface.
*/
export declare function instanceOfGetGifsSearchResponse(value: object): value is GetGifsSearchResponse;
export declare function GetGifsSearchResponseFromJSON(json: any): GetGifsSearchResponse;
export declare function GetGifsSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGifsSearchResponse;
export declare function GetGifsSearchResponseToJSON(json: any): GetGifsSearchResponse;
export declare function GetGifsSearchResponseToJSONTyped(value?: GetGifsSearchResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetGifsSearchResponse.d.ts.map