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 AbcAPIErrorModel3 */ export interface AbcAPIErrorModel3 { /** * * @type {number} * @memberof AbcAPIErrorModel3 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel3 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel3 interface. */ export declare function instanceOfAbcAPIErrorModel3(value: object): value is AbcAPIErrorModel3; export declare function AbcAPIErrorModel3FromJSON(json: any): AbcAPIErrorModel3; export declare function AbcAPIErrorModel3FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel3; export declare function AbcAPIErrorModel3ToJSON(json: any): AbcAPIErrorModel3; export declare function AbcAPIErrorModel3ToJSONTyped(value?: AbcAPIErrorModel3 | null, ignoreDiscriminator?: boolean): any;