UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.16 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 AbcAPIErrorModel4 */ export interface AbcAPIErrorModel4 { /** * * @type {number} * @memberof AbcAPIErrorModel4 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel4 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel4 interface. */ export declare function instanceOfAbcAPIErrorModel4(value: object): value is AbcAPIErrorModel4; export declare function AbcAPIErrorModel4FromJSON(json: any): AbcAPIErrorModel4; export declare function AbcAPIErrorModel4FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel4; export declare function AbcAPIErrorModel4ToJSON(json: any): AbcAPIErrorModel4; export declare function AbcAPIErrorModel4ToJSONTyped(value?: AbcAPIErrorModel4 | null, ignoreDiscriminator?: boolean): any;