Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1007 Bytes

File metadata and controls

34 lines (25 loc) · 1007 Bytes

PyTASUser

Properties

Name Type Description Notes
id int
username str
role str [optional]
first_name str [optional]
last_name str [optional]
email str [optional]

Example

from upstream_api_client.models.py_tas_user import PyTASUser

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

# convert the object into a dict
py_tas_user_dict = py_tas_user_instance.to_dict()
# create an instance of PyTASUser from a dict
py_tas_user_from_dict = PyTASUser.from_dict(py_tas_user_dict)

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