Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

UserGroupCreateResponse.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

UserGroupCreateResponse

Properties

Name Type Description Notes
name str [optional]
id str [optional]
member_ids List[str] [optional]
status str [optional]

Example

from fireblocks.models.user_group_create_response import UserGroupCreateResponse

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

# convert the object into a dict
user_group_create_response_dict = user_group_create_response_instance.to_dict()
# create an instance of UserGroupCreateResponse from a dict
user_group_create_response_from_dict = UserGroupCreateResponse.from_dict(user_group_create_response_dict)

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