Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.47 KB

ReceivedDocumentPaymentsListItemPaymentTerms.md

File metadata and controls

30 lines (21 loc) · 1.47 KB

ReceivedDocumentPaymentsListItemPaymentTerms

Properties

Name Type Description Notes
days int Received 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.received_document_payments_list_item_payment_terms import ReceivedDocumentPaymentsListItemPaymentTerms

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

# convert the object into a dict
received_document_payments_list_item_payment_terms_dict = received_document_payments_list_item_payment_terms_instance.to_dict()
# create an instance of ReceivedDocumentPaymentsListItemPaymentTerms from a dict
received_document_payments_list_item_payment_terms_from_dict = ReceivedDocumentPaymentsListItemPaymentTerms.from_dict(received_document_payments_list_item_payment_terms_dict)

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