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 AbcAPIErrorModel48 */ export interface AbcAPIErrorModel48 { /** * * @type {number} * @memberof AbcAPIErrorModel48 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel48 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel48 interface. */ export declare function instanceOfAbcAPIErrorModel48(value: object): value is AbcAPIErrorModel48; export declare function AbcAPIErrorModel48FromJSON(json: any): AbcAPIErrorModel48; export declare function AbcAPIErrorModel48FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel48; export declare function AbcAPIErrorModel48ToJSON(json: any): AbcAPIErrorModel48; export declare function AbcAPIErrorModel48ToJSONTyped(value?: AbcAPIErrorModel48 | null, ignoreDiscriminator?: boolean): any;