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 AbcAPIErrorModel40 */ export interface AbcAPIErrorModel40 { /** * * @type {number} * @memberof AbcAPIErrorModel40 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel40 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel40 interface. */ export declare function instanceOfAbcAPIErrorModel40(value: object): boolean; export declare function AbcAPIErrorModel40FromJSON(json: any): AbcAPIErrorModel40; export declare function AbcAPIErrorModel40FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel40; export declare function AbcAPIErrorModel40ToJSON(value?: AbcAPIErrorModel40 | null): any;