Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.16 KB

BrowseRequestDto.md

File metadata and controls

31 lines (24 loc) · 1.16 KB

BrowseRequestDto

Properties

Name Type Description Notes
query_lang str [optional]
query str [optional]
status str [optional]
page_number int [optional]
page_size int [optional]

Example

from phrasetms_client.models.browse_request_dto import BrowseRequestDto

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

# convert the object into a dict
browse_request_dto_dict = browse_request_dto_instance.to_dict()
# create an instance of BrowseRequestDto from a dict
browse_request_dto_from_dict = BrowseRequestDto.from_dict(browse_request_dto_dict)

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