Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 892 Bytes

JoomlaAllOf.md

File metadata and controls

28 lines (21 loc) · 892 Bytes

JoomlaAllOf

Properties

Name Type Description Notes
host str
token str

Example

from phrasetms_client.models.joomla_all_of import JoomlaAllOf

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

# convert the object into a dict
joomla_all_of_dict = joomla_all_of_instance.to_dict()
# create an instance of JoomlaAllOf from a dict
joomla_all_of_from_dict = JoomlaAllOf.from_dict(joomla_all_of_dict)

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