The Complete & Submit button settings.
| 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] |
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)