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 AbcAPIErrorModel52 */ export interface AbcAPIErrorModel52 { /** * * @type {number} * @memberof AbcAPIErrorModel52 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel52 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel52 interface. */ export declare function instanceOfAbcAPIErrorModel52(value: object): value is AbcAPIErrorModel52; export declare function AbcAPIErrorModel52FromJSON(json: any): AbcAPIErrorModel52; export declare function AbcAPIErrorModel52FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel52; export declare function AbcAPIErrorModel52ToJSON(json: any): AbcAPIErrorModel52; export declare function AbcAPIErrorModel52ToJSONTyped(value?: AbcAPIErrorModel52 | null, ignoreDiscriminator?: boolean): any;