Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 1.22 KB

File metadata and controls

30 lines (22 loc) · 1.22 KB

EstimateTransactionSmartFeeRI

Properties

Name Type Description Notes
confirmation_target int Represents the confirmation target in blocks
fee_rate str Represents the Fee Rate value.
unit str Defines the fee unit.

Example

from cryptoapis.models.estimate_transaction_smart_fee_ri import EstimateTransactionSmartFeeRI

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

# convert the object into a dict
estimate_transaction_smart_fee_ri_dict = estimate_transaction_smart_fee_ri_instance.to_dict()
# create an instance of EstimateTransactionSmartFeeRI from a dict
estimate_transaction_smart_fee_ri_form_dict = estimate_transaction_smart_fee_ri.from_dict(estimate_transaction_smart_fee_ri_dict)

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