| Name | Type | Description | Notes |
|---|---|---|---|
| splitter_settings | SplitterSettings | [optional] |
from dat_client.models.advanced import Advanced
# TODO update the JSON string below
json = "{}"
# create an instance of Advanced from a JSON string
advanced_instance = Advanced.from_json(json)
# print the JSON string representation of the object
print(Advanced.to_json())
# convert the object into a dict
advanced_dict = advanced_instance.to_dict()
# create an instance of Advanced from a dict
advanced_from_dict = Advanced.from_dict(advanced_dict)