docs/CustomerInventory.md in talon_one-3.0.2 vs docs/CustomerInventory.md in talon_one-5.0.0
- old
+ new
@@ -5,21 +5,23 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**profile** | [**CustomerProfile**](CustomerProfile.md) | | [optional]
**loyalty** | [**Loyalty**](Loyalty.md) | | [optional]
**referrals** | [**Array<InventoryReferral>**](InventoryReferral.md) | | [optional]
-**coupons** | [**Array<InventoryCoupon>**](InventoryCoupon.md) | The coupons reserved by this profile. This array includes hard and soft reservations. See each coupon's `reservation` property. | [optional]
+**coupons** | [**Array<InventoryCoupon>**](InventoryCoupon.md) | The coupons reserved by this profile. This array includes hard and soft reservations. | [optional]
**giveaways** | [**Array<Giveaway>**](Giveaway.md) | | [optional]
+**achievements** | [**Array<AchievementProgress>**](AchievementProgress.md) | | [optional]
## Code Sample
```ruby
require 'TalonOne'
instance = TalonOne::CustomerInventory.new(profile: null,
loyalty: null,
referrals: null,
coupons: null,
- giveaways: null)
+ giveaways: null,
+ achievements: null)
```