Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 853 Bytes

TransactionId.md

File metadata and controls

29 lines (20 loc) · 853 Bytes

TransactionId

transaction ID

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]