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 AbcAPIErrorModel2 */ export interface AbcAPIErrorModel2 { /** * * @type {number} * @memberof AbcAPIErrorModel2 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel2 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel2 interface. */ export declare function instanceOfAbcAPIErrorModel2(value: object): value is AbcAPIErrorModel2; export declare function AbcAPIErrorModel2FromJSON(json: any): AbcAPIErrorModel2; export declare function AbcAPIErrorModel2FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel2; export declare function AbcAPIErrorModel2ToJSON(json: any): AbcAPIErrorModel2; export declare function AbcAPIErrorModel2ToJSONTyped(value?: AbcAPIErrorModel2 | null, ignoreDiscriminator?: boolean): any;