fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
40 lines • 1.35 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';
/**
*
* @export
* @interface GifGetLargeResponse
*/
export interface GifGetLargeResponse {
/**
*
* @type {string}
* @memberof GifGetLargeResponse
*/
src: string;
/**
*
* @type {APIStatus}
* @memberof GifGetLargeResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GifGetLargeResponse interface.
*/
export declare function instanceOfGifGetLargeResponse(value: object): value is GifGetLargeResponse;
export declare function GifGetLargeResponseFromJSON(json: any): GifGetLargeResponse;
export declare function GifGetLargeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GifGetLargeResponse;
export declare function GifGetLargeResponseToJSON(json: any): GifGetLargeResponse;
export declare function GifGetLargeResponseToJSONTyped(value?: GifGetLargeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GifGetLargeResponse.d.ts.map