Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.32 KB

PseudoTranslateWrapperDto.md

File metadata and controls

28 lines (21 loc) · 1.32 KB

PseudoTranslateWrapperDto

Properties

Name Type Description Notes
job_parts JobPartReadyReferences
pseudo_translate PseudoTranslateActionDtoV2

Example

from phrasetms_client.models.pseudo_translate_wrapper_dto import PseudoTranslateWrapperDto

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

# convert the object into a dict
pseudo_translate_wrapper_dto_dict = pseudo_translate_wrapper_dto_instance.to_dict()
# create an instance of PseudoTranslateWrapperDto from a dict
pseudo_translate_wrapper_dto_from_dict = PseudoTranslateWrapperDto.from_dict(pseudo_translate_wrapper_dto_dict)

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