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

Latest commit

 

History

History
32 lines (24 loc) · 1.34 KB

File metadata and controls

32 lines (24 loc) · 1.34 KB

GetFeeRecommendationsRI

Properties

Name Type Description Notes
unit str Currency unit
fast str Fast fee per byte calculated from unconfirmed transactions
slow str Slow fee per byte calculated from unconfirmed transactions
standard str Standard fee per byte calculated from unconfirmed transactions
fee_cushion_multiplier str Fee cushion multiplier used to multiply the base fee

Example

from cryptoapis.models.get_fee_recommendations_ri import GetFeeRecommendationsRI

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

# convert the object into a dict
get_fee_recommendations_ri_dict = get_fee_recommendations_ri_instance.to_dict()
# create an instance of GetFeeRecommendationsRI from a dict
get_fee_recommendations_ri_form_dict = get_fee_recommendations_ri.from_dict(get_fee_recommendations_ri_dict)

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