Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

TransactionRequestNetworkStaking.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

TransactionRequestNetworkStaking

This feature is no longer supported.

Properties

Name Type Description Notes

Example

from fireblocks.models.transaction_request_network_staking import TransactionRequestNetworkStaking

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

# convert the object into a dict
transaction_request_network_staking_dict = transaction_request_network_staking_instance.to_dict()
# create an instance of TransactionRequestNetworkStaking from a dict
transaction_request_network_staking_from_dict = TransactionRequestNetworkStaking.from_dict(transaction_request_network_staking_dict)

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