Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.19 KB

SearchTbResponseListDto.md

File metadata and controls

27 lines (20 loc) · 1.19 KB

SearchTbResponseListDto

Properties

Name Type Description Notes
search_results List[SearchTbResponseDto] [optional]

Example

from phrasetms_client.models.search_tb_response_list_dto import SearchTbResponseListDto

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

# convert the object into a dict
search_tb_response_list_dto_dict = search_tb_response_list_dto_instance.to_dict()
# create an instance of SearchTbResponseListDto from a dict
search_tb_response_list_dto_from_dict = SearchTbResponseListDto.from_dict(search_tb_response_list_dto_dict)

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