@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.34 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.66
* 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 knowledge cutoff datetime for the agent prompt and all tool calls.
* @export
* @interface CutoffDatetime
*/
export interface CutoffDatetime {
}
/**
* Check if a given object implements the CutoffDatetime interface.
*/
export function instanceOfCutoffDatetime(value: object): value is CutoffDatetime {
return true;
}
export function CutoffDatetimeFromJSON(json: any): CutoffDatetime {
return CutoffDatetimeFromJSONTyped(json, false);
}
export function CutoffDatetimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CutoffDatetime {
return json;
}
export function CutoffDatetimeToJSON(json: any): CutoffDatetime {
return CutoffDatetimeToJSONTyped(json, false);
}
export function CutoffDatetimeToJSONTyped(value?: CutoffDatetime | null, ignoreDiscriminator: boolean = false): any {
return value;
}