@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
27 lines (26 loc) • 937 B
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.22
* 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 Choice
*/
export interface Choice {
}
/**
* Check if a given object implements the Choice interface.
*/
export declare function instanceOfChoice(value: object): value is Choice;
export declare function ChoiceFromJSON(json: any): Choice;
export declare function ChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Choice;
export declare function ChoiceToJSON(json: any): Choice;
export declare function ChoiceToJSONTyped(value?: Choice | null, ignoreDiscriminator?: boolean): any;