fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
34 lines • 1.2 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 APIEmptyResponse
*/
export interface APIEmptyResponse {
/**
*
* @type {APIStatus}
* @memberof APIEmptyResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the APIEmptyResponse interface.
*/
export declare function instanceOfAPIEmptyResponse(value: object): value is APIEmptyResponse;
export declare function APIEmptyResponseFromJSON(json: any): APIEmptyResponse;
export declare function APIEmptyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIEmptyResponse;
export declare function APIEmptyResponseToJSON(json: any): APIEmptyResponse;
export declare function APIEmptyResponseToJSONTyped(value?: APIEmptyResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APIEmptyResponse.d.ts.map