Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 850 Bytes

File metadata and controls

29 lines (20 loc) · 850 Bytes

Advanced

Properties

Name Type Description Notes
splitter_settings SplitterSettings [optional]

Example

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)

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