@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.15 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.19.10
* 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 Classification
*/
export interface Classification {
}
/**
* Check if a given object implements the Classification interface.
*/
export function instanceOfClassification(value: object): value is Classification {
return true;
}
export function ClassificationFromJSON(json: any): Classification {
return ClassificationFromJSONTyped(json, false);
}
export function ClassificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Classification {
return json;
}
export function ClassificationToJSON(json: any): Classification {
return ClassificationToJSONTyped(json, false);
}
export function ClassificationToJSONTyped(value?: Classification | null, ignoreDiscriminator: boolean = false): any {
return value;
}