UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
45 lines (44 loc) 1.3 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * 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 ValidationErrorItem */ export interface ValidationErrorItem { /** * * @type {Array<string>} * @memberof ValidationErrorItem */ loc: Array<string>; /** * * @type {string} * @memberof ValidationErrorItem */ msg: string; /** * * @type {string} * @memberof ValidationErrorItem */ type: string; } /** * Check if a given object implements the ValidationErrorItem interface. */ export declare function instanceOfValidationErrorItem(value: object): value is ValidationErrorItem; export declare function ValidationErrorItemFromJSON(json: any): ValidationErrorItem; export declare function ValidationErrorItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationErrorItem; export declare function ValidationErrorItemToJSON(json: any): ValidationErrorItem; export declare function ValidationErrorItemToJSONTyped(value?: ValidationErrorItem | null, ignoreDiscriminator?: boolean): any;