Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

TransactionDetailsResponse

Properties

Name Type Description Notes
status bool Response status [optional]
code str Response code [optional]
message str Response message [optional]
data TransactionDetailsResponseData [optional]

Example

from jenga_client.models.transaction_details_response import TransactionDetailsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of TransactionDetailsResponse from a JSON string
transaction_details_response_instance = TransactionDetailsResponse.from_json(json)
# print the JSON string representation of the object
print(TransactionDetailsResponse.to_json())

# convert the object into a dict
transaction_details_response_dict = transaction_details_response_instance.to_dict()
# create an instance of TransactionDetailsResponse from a dict
transaction_details_response_from_dict = TransactionDetailsResponse.from_dict(transaction_details_response_dict)

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