Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

VerifyEInvoiceXmlErrorResponse.md

File metadata and controls

30 lines (21 loc) · 1.29 KB

VerifyEInvoiceXmlErrorResponse

Properties

Name Type Description Notes
error VerifyEInvoiceXmlErrorResponseError [optional]
extra VerifyEInvoiceXmlErrorResponseExtra [optional]

Example

from fattureincloud_python_sdk.models.verify_e_invoice_xml_error_response import VerifyEInvoiceXmlErrorResponse

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

# convert the object into a dict
verify_e_invoice_xml_error_response_dict = verify_e_invoice_xml_error_response_instance.to_dict()
# create an instance of VerifyEInvoiceXmlErrorResponse from a dict
verify_e_invoice_xml_error_response_from_dict = VerifyEInvoiceXmlErrorResponse.from_dict(verify_e_invoice_xml_error_response_dict)

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