Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.14 KB

GetFileRequestParamsDto.md

File metadata and controls

29 lines (22 loc) · 1.14 KB

GetFileRequestParamsDto

Properties

Name Type Description Notes
source_lang str [optional]
target_lang str [optional]
callback_url str

Example

from phrasetms_client.models.get_file_request_params_dto import GetFileRequestParamsDto

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

# convert the object into a dict
get_file_request_params_dto_dict = get_file_request_params_dto_instance.to_dict()
# create an instance of GetFileRequestParamsDto from a dict
get_file_request_params_dto_from_dict = GetFileRequestParamsDto.from_dict(get_file_request_params_dto_dict)

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