Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.2 KB

File metadata and controls

30 lines (22 loc) · 1.2 KB

ManageFormFillingDtoInteger

The parameters for managing form filling.

Properties

Name Type Description Notes
form_id int The ID of the form to manage.
action FormFillingManageAction [optional]

Example

from docspace_api_sdk.models.manage_form_filling_dto_integer import ManageFormFillingDtoInteger

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

# convert the object into a dict
manage_form_filling_dto_integer_dict = manage_form_filling_dto_integer_instance.to_dict()
# create an instance of ManageFormFillingDtoInteger from a dict
manage_form_filling_dto_integer_from_dict = ManageFormFillingDtoInteger.from_dict(manage_form_filling_dto_integer_dict)

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