Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.44 KB

PaymenttermListElement.md

File metadata and controls

35 lines (26 loc) · 1.44 KB

PaymenttermListElement

A Paymentterm List Element

Properties

Name Type Description Notes
pki_paymentterm_id int The unique ID of the Paymentterm
s_paymentterm_code str The code of the Paymentterm
e_paymentterm_type FieldEPaymenttermType
i_paymentterm_day int The day of the Paymentterm
s_paymentterm_description_x str The description of the Paymentterm in the language of the requester
b_paymentterm_isactive bool Whether the Paymentterm is active or not

Example

from eZmaxApi.models.paymentterm_list_element import PaymenttermListElement

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

# convert the object into a dict
paymentterm_list_element_dict = paymentterm_list_element_instance.to_dict()
# create an instance of PaymenttermListElement from a dict
paymentterm_list_element_form_dict = paymentterm_list_element.from_dict(paymentterm_list_element_dict)

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