Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

UpdateTokenOwnershipStatusDto.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

UpdateTokenOwnershipStatusDto

Properties

Name Type Description Notes
status str

Example

from fireblocks.models.update_token_ownership_status_dto import UpdateTokenOwnershipStatusDto

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

# convert the object into a dict
update_token_ownership_status_dto_dict = update_token_ownership_status_dto_instance.to_dict()
# create an instance of UpdateTokenOwnershipStatusDto from a dict
update_token_ownership_status_dto_from_dict = UpdateTokenOwnershipStatusDto.from_dict(update_token_ownership_status_dto_dict)

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