Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 899 Bytes

File metadata and controls

30 lines (21 loc) · 899 Bytes

FixedFee

Properties

Name Type Description Notes
amount_type FixedAmountTypeEnum
amount str The fixed amount of the fee

Example

from fireblocks.models.fixed_fee import FixedFee

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

# convert the object into a dict
fixed_fee_dict = fixed_fee_instance.to_dict()
# create an instance of FixedFee from a dict
fixed_fee_from_dict = FixedFee.from_dict(fixed_fee_dict)

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