docs/LoyaltyCard.md in talon_one-2.5.1 vs docs/LoyaltyCard.md in talon_one-3.0.0
- old
+ new
@@ -2,34 +2,38 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**id** | **Integer** | Unique ID for this entity. |
-**created** | **DateTime** | The exact moment this entity was created. |
+**id** | **Integer** | Internal ID of this entity. |
+**created** | **DateTime** | The time this entity was created. |
**program_id** | **Integer** | The ID of the loyalty program that owns this entity. |
-**status** | **String** | Status of the loyalty card. Can be one of: ['active', 'disabled'] |
-**identifier** | **String** | The alphanumeric identifier of the loyalty card. |
-**users_per_card_limit** | **Integer** | The max amount of user profiles a card can be shared with. 0 means unlimited. |
-**profiles** | [**Array<LoyaltyCardProfileRegistration>**](LoyaltyCardProfileRegistration.md) | Integration IDs of the customers associated with the card. | [optional]
+**status** | **String** | Status of the loyalty card. Can be one of: ['active', 'inactive'] |
+**identifier** | **String** | The alphanumeric identifier of the loyalty card. |
+**users_per_card_limit** | **Integer** | The max amount of customer profiles that can be linked to the card. 0 means unlimited. |
+**profiles** | [**Array<LoyaltyCardProfileRegistration>**](LoyaltyCardProfileRegistration.md) | Integration IDs of the customers profiles linked to the card. | [optional]
**ledger** | [**LedgerInfo**](LedgerInfo.md) | | [optional]
**subledgers** | [**Hash<String, LedgerInfo>**](LedgerInfo.md) | Displays point balances of the card in the subledgers of the loyalty program. | [optional]
**modified** | **DateTime** | Timestamp of the most recent update of the loyalty card. | [optional]
+**old_card_identifier** | **String** | The alphanumeric identifier of the loyalty card. | [optional]
+**new_card_identifier** | **String** | The alphanumeric identifier of the loyalty card. | [optional]
## Code Sample
```ruby
require 'TalonOne'
instance = TalonOne::LoyaltyCard.new(id: 6,
created: 2020-06-10T09:05:27.993483Z,
program_id: 125,
- status: null,
- identifier: null,
+ status: active,
+ identifier: summer-loyalty-card-0543,
users_per_card_limit: 111,
profiles: null,
ledger: null,
subledgers: null,
- modified: 2021-09-12T10:12:42Z)
+ modified: 2021-09-12T10:12:42Z,
+ old_card_identifier: summer-loyalty-card-0543,
+ new_card_identifier: summer-loyalty-card-0543)
```