Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 2.01 KB

ExportByQueryDto.md

File metadata and controls

38 lines (31 loc) · 2.01 KB

ExportByQueryDto

Properties

Name Type Description Notes
export_target_langs List[str]
queries List[str]
query_langs List[str]
created_at_min datetime [optional]
created_at_max datetime [optional]
modified_at_min datetime [optional]
modified_at_max datetime [optional]
created_by IdReference [optional]
modified_by IdReference [optional]
filename str [optional]
project UidReference [optional]
callback_url str [optional]

Example

from phrasetms_client.models.export_by_query_dto import ExportByQueryDto

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

# convert the object into a dict
export_by_query_dto_dict = export_by_query_dto_instance.to_dict()
# create an instance of ExportByQueryDto from a dict
export_by_query_dto_from_dict = ExportByQueryDto.from_dict(export_by_query_dto_dict)

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