Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.26 KB

EzmaxinvoicingsummaryexternaldetailResponse.md

File metadata and controls

39 lines (30 loc) · 2.26 KB

EzmaxinvoicingsummaryexternaldetailResponse

A Ezmaxinvoicingsummaryexternaldetail Object

Properties

Name Type Description Notes
pki_ezmaxinvoicingsummaryexternaldetail_id int The unique ID of the Ezmaxinvoicingsummaryexternaldetail [optional]
fki_ezmaxinvoicingsummaryexternal_id int The unique ID of the Ezmaxinvoicingsummaryexternal [optional]
fki_ezmaxproduct_id int The unique ID of the Ezmaxproduct
s_ezmaxproduct_description_x str The description of the Ezmaxproduct in the language of the requester
d_ezmaxinvoicingsummaryexternaldetail_countreal str The count item invoiced for the product
d_ezmaxinvoicingsummaryexternaldetail_subtotal str The subtotal invoiced for the product
d_ezmaxinvoicingsummaryexternaldetail_rebate str The rebate for the product
d_ezmaxinvoicingsummaryexternaldetail_total str The total invoiced for the product
b_ezmaxinvoicingsummaryexternaldetail_adjustment bool Whether it's an adjustment
t_ezmaxproduct_help_x str The help message of the Ezmaxproduct in the language of the requester

Example

from eZmaxApi.models.ezmaxinvoicingsummaryexternaldetail_response import EzmaxinvoicingsummaryexternaldetailResponse

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

# convert the object into a dict
ezmaxinvoicingsummaryexternaldetail_response_dict = ezmaxinvoicingsummaryexternaldetail_response_instance.to_dict()
# create an instance of EzmaxinvoicingsummaryexternaldetailResponse from a dict
ezmaxinvoicingsummaryexternaldetail_response_from_dict = EzmaxinvoicingsummaryexternaldetailResponse.from_dict(ezmaxinvoicingsummaryexternaldetail_response_dict)

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