Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 2.45 KB

IssuedDocumentPreCreateInfo.md

File metadata and controls

41 lines (33 loc) · 2.45 KB

IssuedDocumentPreCreateInfo

Properties

Name Type Description Notes
numerations Dict[str, Dict] [optional]
dn_numerations Dict[str, Dict] [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]

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_form_dict = issued_document_pre_create_info.from_dict(issued_document_pre_create_info_dict)

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