Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.68 KB

WebForm.md

File metadata and controls

39 lines (30 loc) · 1.68 KB

WebForm

An object that fully describes an instance of a form

Properties

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]
version_id int Identifier for the current version of the web form that is published [optional]
form_content WebFormContent [optional]

Example

from openapi_client.models.web_form import WebForm

# TODO update the JSON string below
json = "{}"
# create an instance of WebForm from a JSON string
web_form_instance = WebForm.from_json(json)
# print the JSON string representation of the object
print(WebForm.to_json())

# convert the object into a dict
web_form_dict = web_form_instance.to_dict()
# create an instance of WebForm from a dict
web_form_from_dict = WebForm.from_dict(web_form_dict)

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