UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
43 lines (36 loc) 1.01 kB
/* 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'; /** * Start timestamp to filter by * @export * @interface StartTimestamp1 */ export interface StartTimestamp1 { } /** * Check if a given object implements the StartTimestamp1 interface. */ export function instanceOfStartTimestamp1(value: object): boolean { return true; } export function StartTimestamp1FromJSON(json: any): StartTimestamp1 { return StartTimestamp1FromJSONTyped(json, false); } export function StartTimestamp1FromJSONTyped(json: any, ignoreDiscriminator: boolean): StartTimestamp1 { return json; } export function StartTimestamp1ToJSON(value?: StartTimestamp1 | null): any { return value; }