Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1 KB

File metadata and controls

34 lines (25 loc) · 1 KB

TeamUsers

Properties

Name Type Description Notes
user_id str [optional]
email str [optional]
first_name str [optional]
last_name str [optional]
user_role str [optional]
user_status str [optional]

Example

from boldsign.models.team_users import TeamUsers

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

# convert the object into a dict
team_users_dict = team_users_instance.to_dict()
# create an instance of TeamUsers from a dict
team_users_from_dict = TeamUsers.from_dict(team_users_dict)

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