Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

ReceivedDocumentInfo.md

File metadata and controls

35 lines (26 loc) · 1.58 KB

ReceivedDocumentInfo

Properties

Name Type Description Notes
default_values ReceivedDocumentInfoDefaultValues [optional]
items_default_values ReceivedDocumentInfoItemsDefaultValues [optional]
countries_list List[str] Countries list [optional]
currencies_list List[Currency] Currencies list [optional]
categories_list List[str] Categories list [optional]
payment_accounts_list List[PaymentAccount] Payments accounts list [optional]
vat_types_list List[VatType] Vat types list [optional]

Example

from fattureincloud_python_sdk.models.received_document_info import ReceivedDocumentInfo

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

# convert the object into a dict
received_document_info_dict = received_document_info_instance.to_dict()
# create an instance of ReceivedDocumentInfo from a dict
received_document_info_from_dict = ReceivedDocumentInfo.from_dict(received_document_info_dict)

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