@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
43 lines (36 loc) • 892 B
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';
/**
*
* @export
* @interface AsDicts
*/
export interface AsDicts {
}
/**
* Check if a given object implements the AsDicts interface.
*/
export function instanceOfAsDicts(value: object): boolean {
return true;
}
export function AsDictsFromJSON(json: any): AsDicts {
return AsDictsFromJSONTyped(json, false);
}
export function AsDictsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsDicts {
return json;
}
export function AsDictsToJSON(value?: AsDicts | null): any {
return value;
}