Rename project to 'My Project'
Name | Type | Description | Notes |
---|---|---|---|
patches | List[ProjectPatchOp] |
from openapi_client.models.project_patch import ProjectPatch
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectPatch from a JSON string
project_patch_instance = ProjectPatch.from_json(json)
# print the JSON string representation of the object
print(ProjectPatch.to_json())
# convert the object into a dict
project_patch_dict = project_patch_instance.to_dict()
# create an instance of ProjectPatch from a dict
project_patch_from_dict = ProjectPatch.from_dict(project_patch_dict)