Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

CustomEzsignformfielderrorResponse.md

File metadata and controls

31 lines (22 loc) · 1.35 KB

CustomEzsignformfielderrorResponse

A Custom Ezsignformfield Object to contain an error list

Properties

Name Type Description Notes
s_ezsignformfield_label str The Label for the Ezsignformfield
a_obj_ezsignformfielderrortest List[CustomEzsignformfielderrortestResponse]

Example

from eZmaxApi.models.custom_ezsignformfielderror_response import CustomEzsignformfielderrorResponse

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

# convert the object into a dict
custom_ezsignformfielderror_response_dict = custom_ezsignformfielderror_response_instance.to_dict()
# create an instance of CustomEzsignformfielderrorResponse from a dict
custom_ezsignformfielderror_response_form_dict = custom_ezsignformfielderror_response.from_dict(custom_ezsignformfielderror_response_dict)

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