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 AbcAPIErrorModel84 */ export interface AbcAPIErrorModel84 { /** * * @type {number} * @memberof AbcAPIErrorModel84 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel84 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel84 interface. */ export declare function instanceOfAbcAPIErrorModel84(value: object): value is AbcAPIErrorModel84; export declare function AbcAPIErrorModel84FromJSON(json: any): AbcAPIErrorModel84; export declare function AbcAPIErrorModel84FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel84; export declare function AbcAPIErrorModel84ToJSON(json: any): AbcAPIErrorModel84; export declare function AbcAPIErrorModel84ToJSONTyped(value?: AbcAPIErrorModel84 | null, ignoreDiscriminator?: boolean): any;