Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 931 Bytes

File metadata and controls

30 lines (21 loc) · 931 Bytes

CreatorSetting

The creatorSetting

Properties

Name Type Description Notes
creator str The creator [optional]

Example

from touroptimizer_py_client.models.creator_setting import CreatorSetting

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

# convert the object into a dict
creator_setting_dict = creator_setting_instance.to_dict()
# create an instance of CreatorSetting from a dict
creator_setting_from_dict = CreatorSetting.from_dict(creator_setting_dict)

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