Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

GetConsoleUsersResponse.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

GetConsoleUsersResponse

Properties

Name Type Description Notes
users List[ConsoleUser]

Example

from fireblocks.models.get_console_users_response import GetConsoleUsersResponse

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

# convert the object into a dict
get_console_users_response_dict = get_console_users_response_instance.to_dict()
# create an instance of GetConsoleUsersResponse from a dict
get_console_users_response_from_dict = GetConsoleUsersResponse.from_dict(get_console_users_response_dict)

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