Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 924 Bytes

ProjectPatch.md

File metadata and controls

30 lines (21 loc) · 924 Bytes

ProjectPatch

Rename project to 'My Project'

Properties

Name Type Description Notes
patches List[ProjectPatchOp]

Example

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)

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