Add user to a project
Name | Type | Description | Notes |
---|---|---|---|
patch | List[ProjectUserPatchOp] |
from openapi_client.models.project_user_patch import ProjectUserPatch
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectUserPatch from a JSON string
project_user_patch_instance = ProjectUserPatch.from_json(json)
# print the JSON string representation of the object
print(ProjectUserPatch.to_json())
# convert the object into a dict
project_user_patch_dict = project_user_patch_instance.to_dict()
# create an instance of ProjectUserPatch from a dict
project_user_patch_from_dict = ProjectUserPatch.from_dict(project_user_patch_dict)