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 AbcAPIErrorModel19 */ export interface AbcAPIErrorModel19 { /** * * @type {number} * @memberof AbcAPIErrorModel19 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel19 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel19 interface. */ export declare function instanceOfAbcAPIErrorModel19(value: object): value is AbcAPIErrorModel19; export declare function AbcAPIErrorModel19FromJSON(json: any): AbcAPIErrorModel19; export declare function AbcAPIErrorModel19FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel19; export declare function AbcAPIErrorModel19ToJSON(json: any): AbcAPIErrorModel19; export declare function AbcAPIErrorModel19ToJSONTyped(value?: AbcAPIErrorModel19 | null, ignoreDiscriminator?: boolean): any;