UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
38 lines (37 loc) 1.04 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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. */ /** * * @export * @interface AbcAPIErrorModel14 */ export interface AbcAPIErrorModel14 { /** * * @type {number} * @memberof AbcAPIErrorModel14 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel14 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel14 interface. */ export declare function instanceOfAbcAPIErrorModel14(value: object): boolean; export declare function AbcAPIErrorModel14FromJSON(json: any): AbcAPIErrorModel14; export declare function AbcAPIErrorModel14FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel14; export declare function AbcAPIErrorModel14ToJSON(value?: AbcAPIErrorModel14 | null): any;