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 AbcAPIErrorModel39 */ export interface AbcAPIErrorModel39 { /** * * @type {number} * @memberof AbcAPIErrorModel39 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel39 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel39 interface. */ export declare function instanceOfAbcAPIErrorModel39(value: object): value is AbcAPIErrorModel39; export declare function AbcAPIErrorModel39FromJSON(json: any): AbcAPIErrorModel39; export declare function AbcAPIErrorModel39FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel39; export declare function AbcAPIErrorModel39ToJSON(json: any): AbcAPIErrorModel39; export declare function AbcAPIErrorModel39ToJSONTyped(value?: AbcAPIErrorModel39 | null, ignoreDiscriminator?: boolean): any;