@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
26 lines (25 loc) • 869 B
TypeScript
/**
* 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.
*/
/**
* 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 declare function instanceOfCutoffDate(value: object): boolean;
export declare function CutoffDateFromJSON(json: any): CutoffDate;
export declare function CutoffDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CutoffDate;
export declare function CutoffDateToJSON(value?: CutoffDate | null): any;