Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

File metadata and controls

30 lines (22 loc) · 1.05 KB

SubmitForm

The Complete & Submit button settings.

Properties

Name Type Description Notes
visible bool Specifies whether the Complete & Submit button will be displayed or hidden on the top toolbar. [optional]
result_message str A message displayed after forms are submitted. [optional]

Example

from docspace_api_sdk.models.submit_form import SubmitForm

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

# convert the object into a dict
submit_form_dict = submit_form_instance.to_dict()
# create an instance of SubmitForm from a dict
submit_form_from_dict = SubmitForm.from_dict(submit_form_dict)

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