Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

WebFormInstanceList.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

WebFormInstanceList

A list of web form instance items.

Properties

Name Type Description Notes
items List[WebFormInstance] Array of web form instance items. [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]