A list of web form instance items.
Name | Type | Description | Notes |
---|---|---|---|
items | List[WebFormInstance] | Array of web form instance items. | [optional] |
from openapi_client.models.web_form_instance_list import WebFormInstanceList
# TODO update the JSON string below
json = "{}"
# create an instance of WebFormInstanceList from a JSON string
web_form_instance_list_instance = WebFormInstanceList.from_json(json)
# print the JSON string representation of the object
print(WebFormInstanceList.to_json())
# convert the object into a dict
web_form_instance_list_dict = web_form_instance_list_instance.to_dict()
# create an instance of WebFormInstanceList from a dict
web_form_instance_list_from_dict = WebFormInstanceList.from_dict(web_form_instance_list_dict)