Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 893 Bytes

Typo3.md

File metadata and controls

29 lines (22 loc) · 893 Bytes

Typo3

Properties

Name Type Description Notes
host str
source_lang str [optional]
token str

Example

from phrasetms_client.models.typo3 import Typo3

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

# convert the object into a dict
typo3_dict = typo3_instance.to_dict()
# create an instance of Typo3 from a dict
typo3_from_dict = Typo3.from_dict(typo3_dict)

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