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 AbcAPIErrorModel54 */ export interface AbcAPIErrorModel54 { /** * * @type {number} * @memberof AbcAPIErrorModel54 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel54 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel54 interface. */ export declare function instanceOfAbcAPIErrorModel54(value: object): value is AbcAPIErrorModel54; export declare function AbcAPIErrorModel54FromJSON(json: any): AbcAPIErrorModel54; export declare function AbcAPIErrorModel54FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel54; export declare function AbcAPIErrorModel54ToJSON(json: any): AbcAPIErrorModel54; export declare function AbcAPIErrorModel54ToJSONTyped(value?: AbcAPIErrorModel54 | null, ignoreDiscriminator?: boolean): any;