Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.03 KB

SearchTMSubDomainDto.md

File metadata and controls

28 lines (21 loc) · 1.03 KB

SearchTMSubDomainDto

Properties

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

Example

from phrasetms_client.models.search_tm_sub_domain_dto import SearchTMSubDomainDto

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

# convert the object into a dict
search_tm_sub_domain_dto_dict = search_tm_sub_domain_dto_instance.to_dict()
# create an instance of SearchTMSubDomainDto from a dict
search_tm_sub_domain_dto_from_dict = SearchTMSubDomainDto.from_dict(search_tm_sub_domain_dto_dict)

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