transaction ID
Name | Type | Description | Notes |
---|
from usd_search_client.models.transaction_id import TransactionId
# update the JSON string below
json = "{}"
# create an instance of TransactionId from a JSON string
transaction_id_instance = TransactionId.from_json(json)
# print the JSON string representation of the object
print(TransactionId.to_json())
# convert the object into a dict
transaction_id_dict = transaction_id_instance.to_dict()
# create an instance of TransactionId from a dict
transaction_id_from_dict = TransactionId.from_dict(transaction_id_dict)