Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

EstimatedTransactionFeeResponse.md

File metadata and controls

31 lines (22 loc) · 1.22 KB

EstimatedTransactionFeeResponse

Properties

Name Type Description Notes
low TransactionFee
medium TransactionFee
high TransactionFee

Example

from fireblocks.models.estimated_transaction_fee_response import EstimatedTransactionFeeResponse

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

# convert the object into a dict
estimated_transaction_fee_response_dict = estimated_transaction_fee_response_instance.to_dict()
# create an instance of EstimatedTransactionFeeResponse from a dict
estimated_transaction_fee_response_from_dict = EstimatedTransactionFeeResponse.from_dict(estimated_transaction_fee_response_dict)

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