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 AbcAPIErrorModel64 */ export interface AbcAPIErrorModel64 { /** * * @type {number} * @memberof AbcAPIErrorModel64 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel64 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel64 interface. */ export declare function instanceOfAbcAPIErrorModel64(value: object): value is AbcAPIErrorModel64; export declare function AbcAPIErrorModel64FromJSON(json: any): AbcAPIErrorModel64; export declare function AbcAPIErrorModel64FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel64; export declare function AbcAPIErrorModel64ToJSON(json: any): AbcAPIErrorModel64; export declare function AbcAPIErrorModel64ToJSONTyped(value?: AbcAPIErrorModel64 | null, ignoreDiscriminator?: boolean): any;