Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.44 KB

IssuedDocumentPaymentsListItemPaymentTerms.md

File metadata and controls

30 lines (21 loc) · 1.44 KB

IssuedDocumentPaymentsListItemPaymentTerms

Properties

Name Type Description Notes
days int Issued document payment number of days by which the payment must be made [optional]
type PaymentTermsType [optional] [default to PaymentTermsType.STANDARD]

Example

from fattureincloud_python_sdk.models.issued_document_payments_list_item_payment_terms import IssuedDocumentPaymentsListItemPaymentTerms

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

# convert the object into a dict
issued_document_payments_list_item_payment_terms_dict = issued_document_payments_list_item_payment_terms_instance.to_dict()
# create an instance of IssuedDocumentPaymentsListItemPaymentTerms from a dict
issued_document_payments_list_item_payment_terms_from_dict = IssuedDocumentPaymentsListItemPaymentTerms.from_dict(issued_document_payments_list_item_payment_terms_dict)

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