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 AbcAPIErrorModel74 */ export interface AbcAPIErrorModel74 { /** * * @type {number} * @memberof AbcAPIErrorModel74 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel74 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel74 interface. */ export declare function instanceOfAbcAPIErrorModel74(value: object): value is AbcAPIErrorModel74; export declare function AbcAPIErrorModel74FromJSON(json: any): AbcAPIErrorModel74; export declare function AbcAPIErrorModel74FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel74; export declare function AbcAPIErrorModel74ToJSON(json: any): AbcAPIErrorModel74; export declare function AbcAPIErrorModel74ToJSONTyped(value?: AbcAPIErrorModel74 | null, ignoreDiscriminator?: boolean): any;