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

Latest commit

 

History

History
31 lines (23 loc) · 1.36 KB

File metadata and controls

31 lines (23 loc) · 1.36 KB

PrepareTransactionFromAddressRIBSE

Ethereum

Properties

Name Type Description Notes
fee PrepareTransactionFromAddressRIBSBSCFee
transaction_type str Representation of the transaction type
unit str Represents the unit of the amount transacted.

Example

from cryptoapis.models.prepare_transaction_from_address_ribse import PrepareTransactionFromAddressRIBSE

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

# convert the object into a dict
prepare_transaction_from_address_ribse_dict = prepare_transaction_from_address_ribse_instance.to_dict()
# create an instance of PrepareTransactionFromAddressRIBSE from a dict
prepare_transaction_from_address_ribse_form_dict = prepare_transaction_from_address_ribse.from_dict(prepare_transaction_from_address_ribse_dict)

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