Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

AttachDetachUtxoLabelsResponse

Properties

Name Type Description Notes
utxos List[UtxoOutput] Modified UTXOs with updated labels [optional]

Example

from fireblocks.models.attach_detach_utxo_labels_response import AttachDetachUtxoLabelsResponse

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

# convert the object into a dict
attach_detach_utxo_labels_response_dict = attach_detach_utxo_labels_response_instance.to_dict()
# create an instance of AttachDetachUtxoLabelsResponse from a dict
attach_detach_utxo_labels_response_from_dict = AttachDetachUtxoLabelsResponse.from_dict(attach_detach_utxo_labels_response_dict)

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