| Name | Type | Description | Notes |
|---|---|---|---|
| fields | List[object] |
from docspring.models.add_fields_data import AddFieldsData
# TODO update the JSON string below
json = "{}"
# create an instance of AddFieldsData from a JSON string
add_fields_data_instance = AddFieldsData.from_json(json)
# print the JSON string representation of the object
print(AddFieldsData.to_json())
# convert the object into a dict
add_fields_data_dict = add_fields_data_instance.to_dict()
# create an instance of AddFieldsData from a dict
add_fields_data_from_dict = AddFieldsData.from_dict(add_fields_data_dict)