Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 948 Bytes

SubstituteDtoV2.md

File metadata and controls

28 lines (21 loc) · 948 Bytes

SubstituteDtoV2

Properties

Name Type Description Notes
source str
target str

Example

from phrasetms_client.models.substitute_dto_v2 import SubstituteDtoV2

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

# convert the object into a dict
substitute_dto_v2_dict = substitute_dto_v2_instance.to_dict()
# create an instance of SubstituteDtoV2 from a dict
substitute_dto_v2_from_dict = SubstituteDtoV2.from_dict(substitute_dto_v2_dict)

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