/** * Assisted Migration Agent API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Inventory } from './Inventory.js'; /** * * @export * @interface UpdateInventory */ export interface UpdateInventory { /** * * @type {string} * @memberof UpdateInventory */ agentId: string; /** * * @type {Inventory} * @memberof UpdateInventory */ inventory: Inventory; } /** * Check if a given object implements the UpdateInventory interface. */ export declare function instanceOfUpdateInventory(value: object): value is UpdateInventory; export declare function UpdateInventoryFromJSON(json: any): UpdateInventory; export declare function UpdateInventoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateInventory; export declare function UpdateInventoryToJSON(json: any): UpdateInventory; export declare function UpdateInventoryToJSONTyped(value?: UpdateInventory | null, ignoreDiscriminator?: boolean): any;