fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
47 lines • 1.68 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 { APIStatus } from './APIStatus';
import type { GifSearchResponseImagesInnerInner } from './GifSearchResponseImagesInnerInner';
/**
*
* @export
* @interface GetTrending200Response
*/
export interface GetTrending200Response {
/**
*
* @type {Array<Array<GifSearchResponseImagesInnerInner>>}
* @memberof GetTrending200Response
*/
images: Array<Array<GifSearchResponseImagesInnerInner>>;
/**
*
* @type {APIStatus}
* @memberof GetTrending200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetTrending200Response
*/
code: string;
}
/**
* Check if a given object implements the GetTrending200Response interface.
*/
export declare function instanceOfGetTrending200Response(value: object): value is GetTrending200Response;
export declare function GetTrending200ResponseFromJSON(json: any): GetTrending200Response;
export declare function GetTrending200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTrending200Response;
export declare function GetTrending200ResponseToJSON(json: any): GetTrending200Response;
export declare function GetTrending200ResponseToJSONTyped(value?: GetTrending200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTrending200Response.d.ts.map