import { Address } from './Address'; export interface InventoryRecord { ID?: string; OwnerID?: string; readonly Address?: Address; AddressID: string; OrderCanExceed?: boolean; QuantityAvailable?: number; readonly LastUpdated?: string; xp?: TInventoryRecordXp; }