A Paymentterm Object
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 |
from eZmaxApi.models.paymentterm_request import PaymenttermRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PaymenttermRequest from a JSON string
paymentterm_request_instance = PaymenttermRequest.from_json(json)
# print the JSON string representation of the object
print(PaymenttermRequest.to_json())
# convert the object into a dict
paymentterm_request_dict = paymentterm_request_instance.to_dict()
# create an instance of PaymenttermRequest from a dict
paymentterm_request_form_dict = paymentterm_request.from_dict(paymentterm_request_dict)