UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.16 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.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. */ /** * * @export * @interface AbcAPIErrorModel9 */ export interface AbcAPIErrorModel9 { /** * * @type {number} * @memberof AbcAPIErrorModel9 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel9 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel9 interface. */ export declare function instanceOfAbcAPIErrorModel9(value: object): value is AbcAPIErrorModel9; export declare function AbcAPIErrorModel9FromJSON(json: any): AbcAPIErrorModel9; export declare function AbcAPIErrorModel9FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel9; export declare function AbcAPIErrorModel9ToJSON(json: any): AbcAPIErrorModel9; export declare function AbcAPIErrorModel9ToJSONTyped(value?: AbcAPIErrorModel9 | null, ignoreDiscriminator?: boolean): any;