Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

CreateConsoleUser.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

CreateConsoleUser

Properties

Name Type Description Notes
first_name str users firstName
last_name str users lastName
role str users role
email str valid email address

Example

from fireblocks.models.create_console_user import CreateConsoleUser

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

# convert the object into a dict
create_console_user_dict = create_console_user_instance.to_dict()
# create an instance of CreateConsoleUser from a dict
create_console_user_from_dict = CreateConsoleUser.from_dict(create_console_user_dict)

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