The disposition information about a transaction.
| Name | Type | Description | Notes |
|---|---|---|---|
| transaction_id | str | The transaction ID. | |
| disposition_type | DispositionType | ||
| disposition_status | DispositionStatus | ||
| destination_address | str | The blockchain address to receive the refunded/isolated funds. | [optional] |
| disposition_amount | str | The amount to be refunded/isolated from the original transaction, specified as a numeric string. This value cannot exceed the total amount of the original transaction. | [optional] |
| updated_timestamp | int | The time when the disposition was updated, in Unix timestamp format, measured in milliseconds. |
from cobo_waas2.models.disposition_event_data import DispositionEventData
# TODO update the JSON string below
json = "{}"
# create an instance of DispositionEventData from a JSON string
disposition_event_data_instance = DispositionEventData.from_json(json)
# print the JSON string representation of the object
print(DispositionEventData.to_json())
# convert the object into a dict
disposition_event_data_dict = disposition_event_data_instance.to_dict()
# create an instance of DispositionEventData from a dict
disposition_event_data_from_dict = DispositionEventData.from_dict(disposition_event_data_dict)