Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 916 Bytes

SubstituteDto.md

File metadata and controls

28 lines (21 loc) · 916 Bytes

SubstituteDto

Properties

Name Type Description Notes
source str
target str

Example

from phrasetms_client.models.substitute_dto import SubstituteDto

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

# convert the object into a dict
substitute_dto_dict = substitute_dto_instance.to_dict()
# create an instance of SubstituteDto from a dict
substitute_dto_from_dict = SubstituteDto.from_dict(substitute_dto_dict)

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