Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.45 KB

PaymenttermResponse.md

File metadata and controls

36 lines (27 loc) · 1.45 KB

PaymenttermResponse

A Paymentterm Object

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
obj_paymentterm_description MultilingualPaymenttermDescription
b_paymentterm_isactive bool Whether the Paymentterm is active or not
obj_audit CommonAudit

Example

from eZmaxApi.models.paymentterm_response import PaymenttermResponse

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

# convert the object into a dict
paymentterm_response_dict = paymentterm_response_instance.to_dict()
# create an instance of PaymenttermResponse from a dict
paymentterm_response_form_dict = paymentterm_response.from_dict(paymentterm_response_dict)

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