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 AbcAPIErrorModel78 */ export interface AbcAPIErrorModel78 { /** * * @type {number} * @memberof AbcAPIErrorModel78 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel78 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel78 interface. */ export declare function instanceOfAbcAPIErrorModel78(value: object): value is AbcAPIErrorModel78; export declare function AbcAPIErrorModel78FromJSON(json: any): AbcAPIErrorModel78; export declare function AbcAPIErrorModel78FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel78; export declare function AbcAPIErrorModel78ToJSON(json: any): AbcAPIErrorModel78; export declare function AbcAPIErrorModel78ToJSONTyped(value?: AbcAPIErrorModel78 | null, ignoreDiscriminator?: boolean): any;