Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.3 KB

AssignmentPerTargetLangDto.md

File metadata and controls

28 lines (21 loc) · 1.3 KB

AssignmentPerTargetLangDto

Properties

Name Type Description Notes
target_lang str [optional]
providers List[ProviderReference] [optional]

Example

from phrasetms_client.models.assignment_per_target_lang_dto import AssignmentPerTargetLangDto

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

# convert the object into a dict
assignment_per_target_lang_dto_dict = assignment_per_target_lang_dto_instance.to_dict()
# create an instance of AssignmentPerTargetLangDto from a dict
assignment_per_target_lang_dto_from_dict = AssignmentPerTargetLangDto.from_dict(assignment_per_target_lang_dto_dict)

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