Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

SmartTransferSetUserGroups.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

SmartTransferSetUserGroups

Properties

Name Type Description Notes
user_group_ids List[str]

Example

from fireblocks.models.smart_transfer_set_user_groups import SmartTransferSetUserGroups

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

# convert the object into a dict
smart_transfer_set_user_groups_dict = smart_transfer_set_user_groups_instance.to_dict()
# create an instance of SmartTransferSetUserGroups from a dict
smart_transfer_set_user_groups_from_dict = SmartTransferSetUserGroups.from_dict(smart_transfer_set_user_groups_dict)

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