package org.zstack.sdk; public class CloneVmInstanceInventory { public ErrorCode error; public void setError(ErrorCode error) { this.error = error; } public ErrorCode getError() { return this.error; } public VmInstanceInventory inventory; public void setInventory(VmInstanceInventory inventory) { this.inventory = inventory; } public VmInstanceInventory getInventory() { return this.inventory; } }