Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 913 Bytes

RenameCosigner.md

File metadata and controls

29 lines (20 loc) · 913 Bytes

RenameCosigner

Properties

Name Type Description Notes
name str The new name of the cosigner [optional]

Example

from fireblocks.models.rename_cosigner import RenameCosigner

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

# convert the object into a dict
rename_cosigner_dict = rename_cosigner_instance.to_dict()
# create an instance of RenameCosigner from a dict
rename_cosigner_from_dict = RenameCosigner.from_dict(rename_cosigner_dict)

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