| Name |
Type |
Description |
Notes |
| datatype |
int |
The datatype of the field |
[optional] |
| jsonata |
str |
the JSONata expression used to populate this field |
[optional] |
| name |
str |
The name of the field |
[optional] |
from notehub_py.models.data_set_field import DataSetField
# TODO update the JSON string below
json = "{}"
# create an instance of DataSetField from a JSON string
data_set_field_instance = DataSetField.from_json(json)
# print the JSON string representation of the object
print(DataSetField.to_json())
# convert the object into a dict
data_set_field_dict = data_set_field_instance.to_dict()
# create an instance of DataSetField from a dict
data_set_field_from_dict = DataSetField.from_dict(data_set_field_dict)
[Back to Model list] [Back to API list] [Back to README]