Reduced Send data for Update responses, containing only the essential fields.
| 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] |
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)