Sha256: f29b1a666f0623eb2b4ab45e9b141345c21789b19f8bcc2604dc47445f287a85
Contents?: true
Size: 1.34 KB
Versions: 5
Compression:
Stored size: 1.34 KB
Contents
# TalonOne::LoyaltyProgramBalance ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **current_balance** | **Float** | Sum of currently active points. | **pending_balance** | **Float** | Sum of pending points. | **expired_balance** | **Float** | **DEPRECATED** Value is shown as 0. | **spent_balance** | **Float** | **DEPRECATED** Value is shown as 0. | **tentative_current_balance** | **Float** | Sum of the tentative active points (including additions and deductions) inside the currently open session. The `currentBalance` is updated to this value when you close the session, and the effects are applied. | **tentative_pending_balance** | **Float** | Sum of pending points (including additions and deductions) inside the currently open session. The `pendingBalance` is updated to this value when you close the session, and the effects are applied. | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::LoyaltyProgramBalance.new(current_balance: 100.0, pending_balance: 10.0, expired_balance: 0.0, spent_balance: 0.0, tentative_current_balance: 100.0, tentative_pending_balance: 20.0) ```
Version data entries
5 entries across 5 versions & 1 rubygems