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 AbcAPIErrorModel73 */ export interface AbcAPIErrorModel73 { /** * * @type {number} * @memberof AbcAPIErrorModel73 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel73 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel73 interface. */ export declare function instanceOfAbcAPIErrorModel73(value: object): value is AbcAPIErrorModel73; export declare function AbcAPIErrorModel73FromJSON(json: any): AbcAPIErrorModel73; export declare function AbcAPIErrorModel73FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel73; export declare function AbcAPIErrorModel73ToJSON(json: any): AbcAPIErrorModel73; export declare function AbcAPIErrorModel73ToJSONTyped(value?: AbcAPIErrorModel73 | null, ignoreDiscriminator?: boolean): any;