Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.9 KB

File metadata and controls

37 lines (28 loc) · 1.9 KB

EzsignbulksendRequestCompoundV2

A Ezsignbulksend Object and children

Properties

Name Type Description Notes
pki_ezsignbulksend_id int The unique ID of the Ezsignbulksend [optional]
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
fki_language_id int The unique ID of the Language. Valid values: Value
e_ezsignbulksend_ezsignformfieldorder FieldEEzsignbulksendEzsignformfieldorder
s_ezsignbulksend_description str The description of the Ezsignbulksend
t_ezsignbulksend_note str Note about the Ezsignbulksend
b_ezsignbulksend_needvalidation bool Whether the Ezsigntemplatepackage was automatically modified and needs a manual validation
b_ezsignbulksend_isactive bool Whether the Ezsignbulksend is active or not

Example

from eZmaxApi.models.ezsignbulksend_request_compound_v2 import EzsignbulksendRequestCompoundV2

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

# convert the object into a dict
ezsignbulksend_request_compound_v2_dict = ezsignbulksend_request_compound_v2_instance.to_dict()
# create an instance of EzsignbulksendRequestCompoundV2 from a dict
ezsignbulksend_request_compound_v2_from_dict = EzsignbulksendRequestCompoundV2.from_dict(ezsignbulksend_request_compound_v2_dict)

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