Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.08 KB

File metadata and controls

29 lines (22 loc) · 1.08 KB

SearchTMProjectDtoV3

Properties

Name Type Description Notes
id int [optional]
uid str [optional]
name str [optional]

Example

from phrasetms_client.models.search_tm_project_dto_v3 import SearchTMProjectDtoV3

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

# convert the object into a dict
search_tm_project_dto_v3_dict = search_tm_project_dto_v3_instance.to_dict()
# create an instance of SearchTMProjectDtoV3 from a dict
search_tm_project_dto_v3_from_dict = SearchTMProjectDtoV3.from_dict(search_tm_project_dto_v3_dict)

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