UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.17 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 AbcAPIErrorModel36 */ export interface AbcAPIErrorModel36 { /** * * @type {number} * @memberof AbcAPIErrorModel36 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel36 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel36 interface. */ export declare function instanceOfAbcAPIErrorModel36(value: object): value is AbcAPIErrorModel36; export declare function AbcAPIErrorModel36FromJSON(json: any): AbcAPIErrorModel36; export declare function AbcAPIErrorModel36FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel36; export declare function AbcAPIErrorModel36ToJSON(json: any): AbcAPIErrorModel36; export declare function AbcAPIErrorModel36ToJSONTyped(value?: AbcAPIErrorModel36 | null, ignoreDiscriminator?: boolean): any;