Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.05 KB

MORAVIAAllOf.md

File metadata and controls

30 lines (23 loc) · 1.05 KB

MORAVIAAllOf

Properties

Name Type Description Notes
enabled bool [optional]
profile str [optional]
ignorable bool [optional]
instant bool [optional]

Example

from phrasetms_client.models.moravia_all_of import MORAVIAAllOf

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

# convert the object into a dict
moravia_all_of_dict = moravia_all_of_instance.to_dict()
# create an instance of MORAVIAAllOf from a dict
moravia_all_of_from_dict = MORAVIAAllOf.from_dict(moravia_all_of_dict)

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