Issued document extra data [TS fields follow the technical specifications provided by "Sistema Tessera Sanitaria"]
Name | Type | Description | Notes |
---|---|---|---|
multifatture_sent | int | [optional] | |
ts_communication | bool | Send issued document to "Sistema Tessera Sanitaria" | [optional] |
ts_flag_tipo_spesa | float | Issued document ts "tipo spesa" [TK, FC, FV, SV,SP, AD, AS, ECG, SR] | [optional] |
ts_pagamento_tracciato | bool | Issued document ts traced payment | [optional] |
ts_tipo_spesa | str | Can be [ 'TK', 'FC', 'FV', 'SV', 'SP', 'AD', 'AS', 'SR', 'CT', 'PI', 'IC', 'AA' ]. Refer to the technical specifications to learn more. | [optional] |
ts_opposizione | bool | Issued document ts "opposizione" | [optional] |
ts_status | int | Issued document ts status | [optional] |
ts_file_id | str | Issued document ts file id | [optional] |
ts_sent_date | date | Issued document ts sent date | [optional] |
ts_full_amount | bool | Issued document ts total amount | [optional] |
imported_by | str | Issued document imported by software | [optional] |
from fattureincloud_python_sdk.models.issued_document_extra_data import IssuedDocumentExtraData
# TODO update the JSON string below
json = "{}"
# create an instance of IssuedDocumentExtraData from a JSON string
issued_document_extra_data_instance = IssuedDocumentExtraData.from_json(json)
# print the JSON string representation of the object
print(IssuedDocumentExtraData.to_json())
# convert the object into a dict
issued_document_extra_data_dict = issued_document_extra_data_instance.to_dict()
# create an instance of IssuedDocumentExtraData from a dict
issued_document_extra_data_from_dict = IssuedDocumentExtraData.from_dict(issued_document_extra_data_dict)