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 AbcAPIErrorModel23 */ export interface AbcAPIErrorModel23 { /** * * @type {number} * @memberof AbcAPIErrorModel23 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel23 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel23 interface. */ export declare function instanceOfAbcAPIErrorModel23(value: object): value is AbcAPIErrorModel23; export declare function AbcAPIErrorModel23FromJSON(json: any): AbcAPIErrorModel23; export declare function AbcAPIErrorModel23FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel23; export declare function AbcAPIErrorModel23ToJSON(json: any): AbcAPIErrorModel23; export declare function AbcAPIErrorModel23ToJSONTyped(value?: AbcAPIErrorModel23 | null, ignoreDiscriminator?: boolean): any;