@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
43 lines (36 loc) • 1.04 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.9.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.
*/
import { mapValues } from '../runtime';
/**
* The cutoff date for the forecast. String format is 'YYYY-MM-DD-HH:MM'. This is useful for backtesting forecasts.
* @export
* @interface CutoffDate
*/
export interface CutoffDate {
}
/**
* Check if a given object implements the CutoffDate interface.
*/
export function instanceOfCutoffDate(value: object): boolean {
return true;
}
export function CutoffDateFromJSON(json: any): CutoffDate {
return CutoffDateFromJSONTyped(json, false);
}
export function CutoffDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CutoffDate {
return json;
}
export function CutoffDateToJSON(value?: CutoffDate | null): any {
return value;
}