Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 923 Bytes

ProjectUser.md

File metadata and controls

31 lines (22 loc) · 923 Bytes

ProjectUser

Properties

Name Type Description Notes
id int [optional]
name str [optional]
username str [optional]

Example

from semaphore_api.models.project_user import ProjectUser

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

# convert the object into a dict
project_user_dict = project_user_instance.to_dict()
# create an instance of ProjectUser from a dict
project_user_from_dict = ProjectUser.from_dict(project_user_dict)

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