docs/LoyaltyLedgerEntry.md in talon_one-2.0.0 vs docs/LoyaltyLedgerEntry.md in talon_one-2.1.0

- old
+ new

@@ -12,10 +12,11 @@ **type** | **String** | | **amount** | **Float** | | **expiry_date** | **DateTime** | | [optional] **name** | **String** | A name referencing the condition or effect that added this entry, or the specific name provided in an API call. | **sub_ledger_id** | **String** | This specifies if we are adding loyalty points to the main ledger or a subledger | +**user_id** | **Integer** | This is the ID of the user who created this entry, if the addition or subtraction was done manually. | [optional] ## Code Sample ```ruby require 'TalonOne' @@ -27,9 +28,10 @@ event_id: null, type: null, amount: null, expiry_date: null, name: null, - sub_ledger_id: null) + sub_ledger_id: null, + user_id: null) ```