@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.15 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
import { mapValues } from '../runtime';
/**
*
* @export
* @interface Choice
*/
export interface Choice {
}
/**
* Check if a given object implements the Choice interface.
*/
export function instanceOfChoice(value: object): value is Choice {
return true;
}
export function ChoiceFromJSON(json: any): Choice {
return ChoiceFromJSONTyped(json, false);
}
export function ChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Choice {
return json;
}
export function ChoiceToJSON(json: any): Choice {
return ChoiceToJSONTyped(json, false);
}
export function ChoiceToJSONTyped(value?: Choice | null, ignoreDiscriminator: boolean = false): any {
return value;
}