Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

CustomEzsignformfielderrortestResponse.md

File metadata and controls

31 lines (22 loc) · 1.37 KB

CustomEzsignformfielderrortestResponse

A Custom Ezsignformfielderrortest Object to contain the detail of the test error

Properties

Name Type Description Notes
s_ezsignformfielderrortest_name str The name of the test
s_ezsignformfielderrortest_detail str The detail why the test failed

Example

from eZmaxApi.models.custom_ezsignformfielderrortest_response import CustomEzsignformfielderrortestResponse

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

# convert the object into a dict
custom_ezsignformfielderrortest_response_dict = custom_ezsignformfielderrortest_response_instance.to_dict()
# create an instance of CustomEzsignformfielderrortestResponse from a dict
custom_ezsignformfielderrortest_response_form_dict = custom_ezsignformfielderrortest_response.from_dict(custom_ezsignformfielderrortest_response_dict)

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