An array of objects.
Name | Type | Description | Notes |
---|---|---|---|
body | str | The predefined graphql query. | |
id | int | [optional] | |
label | str | The label of the preset. |
from wordlift_client.models.preset import Preset
# TODO update the JSON string below
json = "{}"
# create an instance of Preset from a JSON string
preset_instance = Preset.from_json(json)
# print the JSON string representation of the object
print(Preset.to_json())
# convert the object into a dict
preset_dict = preset_instance.to_dict()
# create an instance of Preset from a dict
preset_from_dict = Preset.from_dict(preset_dict)