Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.51 KB

PaymenttermRequestCompound.md

File metadata and controls

35 lines (26 loc) · 1.51 KB

PaymenttermRequestCompound

A Paymentterm Object and children

Properties

Name Type Description Notes
pki_paymentterm_id int The unique ID of the Paymentterm [optional]
s_paymentterm_code str The code of the Paymentterm
e_paymentterm_type FieldEPaymenttermType
i_paymentterm_day int The day of the Paymentterm
obj_paymentterm_description MultilingualPaymenttermDescription
b_paymentterm_isactive bool Whether the Paymentterm is active or not

Example

from eZmaxApi.models.paymentterm_request_compound import PaymenttermRequestCompound

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

# convert the object into a dict
paymentterm_request_compound_dict = paymentterm_request_compound_instance.to_dict()
# create an instance of PaymenttermRequestCompound from a dict
paymentterm_request_compound_form_dict = paymentterm_request_compound.from_dict(paymentterm_request_compound_dict)

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