The keySetting
| Name | Type | Description | Notes |
|---|---|---|---|
| json_license | str | The jsonLicense | [optional] |
from touroptimizer_py_client.models.optimization_key_setting import OptimizationKeySetting
# TODO update the JSON string below
json = "{}"
# create an instance of OptimizationKeySetting from a JSON string
optimization_key_setting_instance = OptimizationKeySetting.from_json(json)
# print the JSON string representation of the object
print(OptimizationKeySetting.to_json())
# convert the object into a dict
optimization_key_setting_dict = optimization_key_setting_instance.to_dict()
# create an instance of OptimizationKeySetting from a dict
optimization_key_setting_from_dict = OptimizationKeySetting.from_dict(optimization_key_setting_dict)