Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.3 KB

File metadata and controls

32 lines (24 loc) · 1.3 KB

CheckFillFormDraft

The parameters for checking the form draft filling.

Properties

Name Type Description Notes
version int The file version of the form draft.
action str The action with the form draft. [optional]
request_view bool Specifies whether to request the form for viewing or not. [optional] [readonly]
request_embedded bool Specifies whether to request an embedded form or not. [optional] [readonly]

Example

from docspace_api_sdk.models.check_fill_form_draft import CheckFillFormDraft

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

# convert the object into a dict
check_fill_form_draft_dict = check_fill_form_draft_instance.to_dict()
# create an instance of CheckFillFormDraft from a dict
check_fill_form_draft_from_dict = CheckFillFormDraft.from_dict(check_fill_form_draft_dict)

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