Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.4 KB

File metadata and controls

35 lines (26 loc) · 1.4 KB

SendReduced

Reduced Send data for Update responses, containing only the essential fields.

Properties

Name Type Description Notes
identifier str SDI identifier. [optional]
prestatore str VAT number of the Cedente/Prestatore (vendor). [optional]
meta_data Dict[str, str] Optional metadata, as json. [optional]
documents List[DocumentData] The invoices included in the payload. [optional]
date_sent datetime When the invoice was sent to SDI. [optional]
latest_state str Current SDI state of the invoice. Reflects the most recent update received from SDI. [optional]

Example

from invoicetronic_sdk.models.send_reduced import SendReduced

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

# convert the object into a dict
send_reduced_dict = send_reduced_instance.to_dict()
# create an instance of SendReduced from a dict
send_reduced_from_dict = SendReduced.from_dict(send_reduced_dict)

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