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 AbcAPIErrorModel66 */ export interface AbcAPIErrorModel66 { /** * * @type {number} * @memberof AbcAPIErrorModel66 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel66 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel66 interface. */ export declare function instanceOfAbcAPIErrorModel66(value: object): value is AbcAPIErrorModel66; export declare function AbcAPIErrorModel66FromJSON(json: any): AbcAPIErrorModel66; export declare function AbcAPIErrorModel66FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel66; export declare function AbcAPIErrorModel66ToJSON(json: any): AbcAPIErrorModel66; export declare function AbcAPIErrorModel66ToJSONTyped(value?: AbcAPIErrorModel66 | null, ignoreDiscriminator?: boolean): any;