docs/LoyaltySubLedger.md in talon_one-1.4.0 vs docs/LoyaltySubLedger.md in talon_one-2.0.0

- old
+ new

@@ -1,10 +1,21 @@ # TalonOne::LoyaltySubLedger ## Properties + Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **total** | **Float** | | **transactions** | [**Array<LoyaltyLedgerEntry>**](LoyaltyLedgerEntry.md) | Transactions contains a list of all events that have happened such as additions, subtractions and expiries | [optional] **expiring_points** | [**Array<LoyaltyLedgerEntry>**](LoyaltyLedgerEntry.md) | ExpiringPoints contains a list of all points that will expiry and when | [optional] + +## Code Sample + +```ruby +require 'TalonOne' + +instance = TalonOne::LoyaltySubLedger.new(total: null, + transactions: null, + expiring_points: null) +```