Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.55 KB

File metadata and controls

33 lines (24 loc) · 1.55 KB

CommonResponseErrorSTemporaryFileUrl

Generic Error Message

Properties

Name Type Description Notes
s_error_message str The message giving details about the error
e_error_code FieldEErrorCode
a_s_error_messagedetail List[str] More error message detail [optional]
s_temporary_file_url str The Temporary File Url of the document that was uploaded. That url can be reused instead of uploading the file again. [optional]

Example

from eZmaxApi.models.common_response_error_s_temporary_file_url import CommonResponseErrorSTemporaryFileUrl

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

# convert the object into a dict
common_response_error_s_temporary_file_url_dict = common_response_error_s_temporary_file_url_instance.to_dict()
# create an instance of CommonResponseErrorSTemporaryFileUrl from a dict
common_response_error_s_temporary_file_url_from_dict = CommonResponseErrorSTemporaryFileUrl.from_dict(common_response_error_s_temporary_file_url_dict)

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