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 AbcAPIErrorModel13 */ export interface AbcAPIErrorModel13 { /** * * @type {number} * @memberof AbcAPIErrorModel13 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel13 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel13 interface. */ export declare function instanceOfAbcAPIErrorModel13(value: object): value is AbcAPIErrorModel13; export declare function AbcAPIErrorModel13FromJSON(json: any): AbcAPIErrorModel13; export declare function AbcAPIErrorModel13FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel13; export declare function AbcAPIErrorModel13ToJSON(json: any): AbcAPIErrorModel13; export declare function AbcAPIErrorModel13ToJSONTyped(value?: AbcAPIErrorModel13 | null, ignoreDiscriminator?: boolean): any;