Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

UnspentInput.md

File metadata and controls

30 lines (21 loc) · 901 Bytes

UnspentInput

Properties

Name Type Description Notes
tx_hash str [optional]
index float [optional]

Example

from fireblocks.models.unspent_input import UnspentInput

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

# convert the object into a dict
unspent_input_dict = unspent_input_instance.to_dict()
# create an instance of UnspentInput from a dict
unspent_input_from_dict = UnspentInput.from_dict(unspent_input_dict)

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