Log entry for a given loyalty card transaction.
| Name | Type | Description | Notes |
|---|---|---|---|
| transaction_uuid | str | Unique identifier of the transaction in the UUID format. | |
| created | datetime | Date and time the loyalty card transaction occurred. | |
| program_id | int | ID of the loyalty program. | |
| card_identifier | str | The alphanumeric identifier of the loyalty card. | |
| customer_session_id | str | ID of the customer session where the transaction occurred. | [optional] |
| type | str | Type of transaction. Possible values: - `addition`: Signifies added points. - `subtraction`: Signifies deducted points. | |
| name | str | Name or reason of the loyalty ledger transaction. | |
| start_date | str | When points become active. Possible values: - `immediate`: Points are active immediately. - `on_action`: Points become active based on the customer's action. - a timestamp value: Points become active at a given date and time. | |
| expiry_date | str | Date when points expire. Possible values are: - `unlimited`: Points have no expiration date. - `timestamp value`: Points expire on the given date. | |
| subledger_id | str | ID of the subledger. | |
| amount | float | Amount of loyalty points added or deducted in the transaction. | |
| id | int | ID of the loyalty ledger transaction. | |
| ruleset_id | int | The ID of the ruleset containing the rule that triggered this effect. | [optional] |
| rule_name | str | The name of the rule that triggered this effect. | [optional] |
| validity_duration | str | The duration for which the points remain active, relative to the activation date. Note: This only applies to points for which `awaitsActivation` is `true` and `expiryDate` is not set. | [optional] |
from talon_one.models.card_ledger_transaction_log_entry_integration_api import CardLedgerTransactionLogEntryIntegrationAPI
# TODO update the JSON string below
json = "{}"
# create an instance of CardLedgerTransactionLogEntryIntegrationAPI from a JSON string
card_ledger_transaction_log_entry_integration_api_instance = CardLedgerTransactionLogEntryIntegrationAPI.from_json(json)
# print the JSON string representation of the object
print(CardLedgerTransactionLogEntryIntegrationAPI.to_json())
# convert the object into a dict
card_ledger_transaction_log_entry_integration_api_dict = card_ledger_transaction_log_entry_integration_api_instance.to_dict()
# create an instance of CardLedgerTransactionLogEntryIntegrationAPI from a dict
card_ledger_transaction_log_entry_integration_api_from_dict = CardLedgerTransactionLogEntryIntegrationAPI.from_dict(card_ledger_transaction_log_entry_integration_api_dict)