location property

  1. @JsonKey(name: 'location', fromJson: decodeItemLocation, toJson: encodeItemLocation)
ItemLocation? location
getter/setter pair

Sometimes, inventory buckets represent conceptual "locations" in the game that might not be expected. This value indicates the conceptual location of the bucket, regardless of where it is actually contained on the character/account. See ItemLocation for details. Note that location includes the Vault and the Postmaster (both of whom being just inventory buckets with additional actions that can be performed on them through a Vendor)

Implementation

@JsonKey(name:'location',fromJson:decodeItemLocation,toJson:encodeItemLocation)
ItemLocation? location;