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 AbcAPIErrorModel69 */ export interface AbcAPIErrorModel69 { /** * * @type {number} * @memberof AbcAPIErrorModel69 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel69 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel69 interface. */ export declare function instanceOfAbcAPIErrorModel69(value: object): value is AbcAPIErrorModel69; export declare function AbcAPIErrorModel69FromJSON(json: any): AbcAPIErrorModel69; export declare function AbcAPIErrorModel69FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel69; export declare function AbcAPIErrorModel69ToJSON(json: any): AbcAPIErrorModel69; export declare function AbcAPIErrorModel69ToJSONTyped(value?: AbcAPIErrorModel69 | null, ignoreDiscriminator?: boolean): any;