Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.1 KB

APIUser.md

File metadata and controls

34 lines (25 loc) · 1.1 KB

APIUser

Properties

Name Type Description Notes
id str The unique identifier of the user [optional]
name str The name 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.api_user import APIUser

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

# convert the object into a dict
api_user_dict = api_user_instance.to_dict()
# create an instance of APIUser from a dict
api_user_from_dict = APIUser.from_dict(api_user_dict)

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