@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
43 lines (36 loc) • 1.16 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';
/**
* Entity guarantee to filter by. This is a tuple, where the first element is the entity type, and the second element is the entity value required. For example ('Location', 'Paris')
* @export
* @interface EntityGuarantee
*/
export interface EntityGuarantee {
}
/**
* Check if a given object implements the EntityGuarantee interface.
*/
export function instanceOfEntityGuarantee(value: object): boolean {
return true;
}
export function EntityGuaranteeFromJSON(json: any): EntityGuarantee {
return EntityGuaranteeFromJSONTyped(json, false);
}
export function EntityGuaranteeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityGuarantee {
return json;
}
export function EntityGuaranteeToJSON(value?: EntityGuarantee | null): any {
return value;
}