Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.5 KB

CustomEzsignformfieldgroupRequest.md

File metadata and controls

32 lines (23 loc) · 1.5 KB

CustomEzsignformfieldgroupRequest

A Custom Ezsignformfieldgroup Object to fill an Ezsignform using submitForm

Properties

Name Type Description Notes
pki_ezsignformfieldgroup_id int The unique ID of the Ezsignformfieldgroup [optional]
s_ezsignformfieldgroup_label str The Label for the Ezsignformfieldgroup [optional]
a_obj_ezsignformfield List[CustomEzsignformfieldRequest] An array containing all the values to fill the Ezsignform.

Example

from eZmaxApi.models.custom_ezsignformfieldgroup_request import CustomEzsignformfieldgroupRequest

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

# convert the object into a dict
custom_ezsignformfieldgroup_request_dict = custom_ezsignformfieldgroup_request_instance.to_dict()
# create an instance of CustomEzsignformfieldgroupRequest from a dict
custom_ezsignformfieldgroup_request_from_dict = CustomEzsignformfieldgroupRequest.from_dict(custom_ezsignformfieldgroup_request_dict)

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