| Name | Type | Description | Notes |
|---|---|---|---|
| fields | List[FieldListFieldsInner] | [optional] |
from bamboohr_sdk.models.field_list import FieldList
# TODO update the JSON string below
json = "{}"
# create an instance of FieldList from a JSON string
field_list_instance = FieldList.from_json(json)
# print the JSON string representation of the object
print(FieldList.to_json())
# convert the object into a dict
field_list_dict = field_list_instance.to_dict()
# create an instance of FieldList from a dict
field_list_from_dict = FieldList.from_dict(field_list_dict)