@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
27 lines (26 loc) • 791 B
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.21.1
* Contact: contact@emergentmethods.ai
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Stop
*/
export interface Stop {
}
/**
* Check if a given object implements the Stop interface.
*/
export declare function instanceOfStop(value: object): value is Stop;
export declare function StopFromJSON(json: any): Stop;
export declare function StopFromJSONTyped(json: any, ignoreDiscriminator: boolean): Stop;
export declare function StopToJSON(json: any): Stop;
export declare function StopToJSONTyped(value?: Stop | null, ignoreDiscriminator?: boolean): any;