Name |
Type |
Description |
Notes |
group_name |
str |
|
[optional] |
member_ids |
List[str] |
|
[optional] |
from fireblocks.models.user_group_create_request import UserGroupCreateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UserGroupCreateRequest from a JSON string
user_group_create_request_instance = UserGroupCreateRequest.from_json(json)
# print the JSON string representation of the object
print(UserGroupCreateRequest.to_json())
# convert the object into a dict
user_group_create_request_dict = user_group_create_request_instance.to_dict()
# create an instance of UserGroupCreateRequest from a dict
user_group_create_request_from_dict = UserGroupCreateRequest.from_dict(user_group_create_request_dict)
[Back to Model list] [Back to API list] [Back to README]