Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.54 KB

File metadata and controls

43 lines (34 loc) · 2.54 KB

IssuedDocumentPreCreateInfo

Properties

Name Type Description Notes
numerations Dict[str, Dict[str, int]] [optional]
dn_numerations Dict[str, Dict[str, int]] [optional]
default_values IssuedDocumentPreCreateInfoDefaultValues [optional]
extra_data_default_values IssuedDocumentPreCreateInfoExtraDataDefaultValues [optional]
items_default_values IssuedDocumentPreCreateInfoItemsDefaultValues [optional]
countries_list List[str] Countries list [optional]
currencies_list List[Currency] Currencies list [optional]
templates_list List[DocumentTemplate] Document templates list [optional]
dn_templates_list List[DocumentTemplate] Delivery note templates list [optional]
ai_templates_list List[DocumentTemplate] Accompanying invoice templates list [optional]
payment_methods_list List[PaymentMethod] Payment methods list [optional]
payment_accounts_list List[PaymentAccount] Payment accounts list [optional]
vat_types_list List[VatType] Vat types list [optional]
languages_list List[Language] Languages list [optional]
price_lists List[PriceList] Price lists [optional]

Example

from fattureincloud_python_sdk.models.issued_document_pre_create_info import IssuedDocumentPreCreateInfo

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

# convert the object into a dict
issued_document_pre_create_info_dict = issued_document_pre_create_info_instance.to_dict()
# create an instance of IssuedDocumentPreCreateInfo from a dict
issued_document_pre_create_info_from_dict = IssuedDocumentPreCreateInfo.from_dict(issued_document_pre_create_info_dict)

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