Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.02 KB

SearchTMClientDtoV3.md

File metadata and controls

28 lines (21 loc) · 1.02 KB

SearchTMClientDtoV3

Properties

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

Example

from phrasetms_client.models.search_tm_client_dto_v3 import SearchTMClientDtoV3

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

# convert the object into a dict
search_tm_client_dto_v3_dict = search_tm_client_dto_v3_instance.to_dict()
# create an instance of SearchTMClientDtoV3 from a dict
search_tm_client_dto_v3_from_dict = SearchTMClientDtoV3.from_dict(search_tm_client_dto_v3_dict)

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