Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

EstimatedNetworkFeeResponse.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

EstimatedNetworkFeeResponse

Properties

Name Type Description Notes
low NetworkFee
medium NetworkFee
high NetworkFee

Example

from fireblocks.models.estimated_network_fee_response import EstimatedNetworkFeeResponse

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

# convert the object into a dict
estimated_network_fee_response_dict = estimated_network_fee_response_instance.to_dict()
# create an instance of EstimatedNetworkFeeResponse from a dict
estimated_network_fee_response_from_dict = EstimatedNetworkFeeResponse.from_dict(estimated_network_fee_response_dict)

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