Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.29 KB

ConsoleUser.md

File metadata and controls

36 lines (27 loc) · 1.29 KB

ConsoleUser

Properties

Name Type Description Notes
id str The unique identifier of the user [optional]
first_name str The first name of the user [optional]
last_name str The last name of the user [optional]
email str The email address of the user [optional]
role UserRole [optional]
enabled bool Whether the user is enabled [optional]
status UserStatus [optional]
user_type UserType [optional]

Example

from fireblocks.models.console_user import ConsoleUser

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

# convert the object into a dict
console_user_dict = console_user_instance.to_dict()
# create an instance of ConsoleUser from a dict
console_user_from_dict = ConsoleUser.from_dict(console_user_dict)

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