Sha256: 3d46c75d87893ea6320324dccc8d1d60b9d5180825a6b26cb03ed3fc890ac9e0
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
# TalonOne::CustomerProfile ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **integration_id** | **String** | The ID used for this entity in the application system. | **created** | **DateTime** | The exact moment this entity was created. | **attributes** | [**Object**](.md) | Arbitrary properties associated with this item | **account_id** | **Integer** | The ID of the Talon.One account that owns this profile. | **closed_sessions** | **Integer** | The total amount of closed sessions by a customer. A closed session is a successful purchase. | **total_sales** | **Float** | Sum of all purchases made by this customer | **loyalty_memberships** | [**Array<LoyaltyMembership>**](LoyaltyMembership.md) | A list of loyalty programs joined by the customer | [optional] **last_activity** | **DateTime** | Timestamp of the most recent event received from this customer | ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::CustomerProfile.new(integration_id: null, created: null, attributes: null, account_id: null, closed_sessions: null, total_sales: null, loyalty_memberships: null, last_activity: null) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
talon_one-2.1.1 | docs/CustomerProfile.md |
talon_one-2.1.0 | docs/CustomerProfile.md |
talon_one-2.0.0 | docs/CustomerProfile.md |