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 AbcAPIErrorModel11 */ export interface AbcAPIErrorModel11 { /** * * @type {number} * @memberof AbcAPIErrorModel11 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel11 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel11 interface. */ export declare function instanceOfAbcAPIErrorModel11(value: object): value is AbcAPIErrorModel11; export declare function AbcAPIErrorModel11FromJSON(json: any): AbcAPIErrorModel11; export declare function AbcAPIErrorModel11FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel11; export declare function AbcAPIErrorModel11ToJSON(json: any): AbcAPIErrorModel11; export declare function AbcAPIErrorModel11ToJSONTyped(value?: AbcAPIErrorModel11 | null, ignoreDiscriminator?: boolean): any;