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 AbcAPIErrorModel8 */ export interface AbcAPIErrorModel8 { /** * * @type {number} * @memberof AbcAPIErrorModel8 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel8 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel8 interface. */ export declare function instanceOfAbcAPIErrorModel8(value: object): value is AbcAPIErrorModel8; export declare function AbcAPIErrorModel8FromJSON(json: any): AbcAPIErrorModel8; export declare function AbcAPIErrorModel8FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel8; export declare function AbcAPIErrorModel8ToJSON(json: any): AbcAPIErrorModel8; export declare function AbcAPIErrorModel8ToJSONTyped(value?: AbcAPIErrorModel8 | null, ignoreDiscriminator?: boolean): any;