Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 894 Bytes

ProjectAccess.md

File metadata and controls

29 lines (20 loc) · 894 Bytes

ProjectAccess

Properties

Name Type Description Notes
member_id int Team member id title. [optional]

Example

from qaseio.models.project_access import ProjectAccess

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

# convert the object into a dict
project_access_dict = project_access_instance.to_dict()
# create an instance of ProjectAccess from a dict
project_access_form_dict = project_access.from_dict(project_access_dict)

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