Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 903 Bytes

CloneProjectDto.md

File metadata and controls

27 lines (20 loc) · 903 Bytes

CloneProjectDto

Properties

Name Type Description Notes
name str

Example

from phrasetms_client.models.clone_project_dto import CloneProjectDto

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

# convert the object into a dict
clone_project_dto_dict = clone_project_dto_instance.to_dict()
# create an instance of CloneProjectDto from a dict
clone_project_dto_from_dict = CloneProjectDto.from_dict(clone_project_dto_dict)

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