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 AbcAPIErrorModel56 */ export interface AbcAPIErrorModel56 { /** * * @type {number} * @memberof AbcAPIErrorModel56 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel56 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel56 interface. */ export declare function instanceOfAbcAPIErrorModel56(value: object): value is AbcAPIErrorModel56; export declare function AbcAPIErrorModel56FromJSON(json: any): AbcAPIErrorModel56; export declare function AbcAPIErrorModel56FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel56; export declare function AbcAPIErrorModel56ToJSON(json: any): AbcAPIErrorModel56; export declare function AbcAPIErrorModel56ToJSONTyped(value?: AbcAPIErrorModel56 | null, ignoreDiscriminator?: boolean): any;