An object that summarizes an instance of a form that can be used to display a listing
Name | Type | Description | Notes |
---|---|---|---|
id | str | Unique identifier for a Web Form that is consistent for it's lifetime | [optional] |
account_id | str | Account identifier in which the web form resides | [optional] |
is_published | bool | Has the form been published | [optional] |
is_enabled | bool | Is the form currently enabled and available for data collection | [optional] |
has_draft_changes | bool | Does the form have draft changes that need to be published? | [optional] |
form_state | WebFormState | [optional] | |
form_properties | WebFormProperties | [optional] | |
form_metadata | WebFormMetadata | [optional] |
from openapi_client.models.web_form_summary import WebFormSummary
# TODO update the JSON string below
json = "{}"
# create an instance of WebFormSummary from a JSON string
web_form_summary_instance = WebFormSummary.from_json(json)
# print the JSON string representation of the object
print(WebFormSummary.to_json())
# convert the object into a dict
web_form_summary_dict = web_form_summary_instance.to_dict()
# create an instance of WebFormSummary from a dict
web_form_summary_from_dict = WebFormSummary.from_dict(web_form_summary_dict)