Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 979 Bytes

ProjectUserPatch.md

File metadata and controls

30 lines (21 loc) · 979 Bytes

ProjectUserPatch

Add user to a project

Properties

Name Type Description Notes
patch List[ProjectUserPatchOp]

Example

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)

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