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 AbcAPIErrorModel5 */ export interface AbcAPIErrorModel5 { /** * * @type {number} * @memberof AbcAPIErrorModel5 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel5 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel5 interface. */ export declare function instanceOfAbcAPIErrorModel5(value: object): value is AbcAPIErrorModel5; export declare function AbcAPIErrorModel5FromJSON(json: any): AbcAPIErrorModel5; export declare function AbcAPIErrorModel5FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel5; export declare function AbcAPIErrorModel5ToJSON(json: any): AbcAPIErrorModel5; export declare function AbcAPIErrorModel5ToJSONTyped(value?: AbcAPIErrorModel5 | null, ignoreDiscriminator?: boolean): any;