Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.9 KB

File metadata and controls

37 lines (28 loc) · 1.9 KB

EzmaxinvoicingcommissionResponse

A Ezmaxinvoicingcommission Object

Properties

Name Type Description Notes
pki_ezmaxinvoicingcommission_id int The unique ID of the Ezmaxinvoicingcommission [optional]
fki_ezmaxinvoicingsummaryglobal_id int The unique ID of the Ezmaxinvoicingsummaryglobal [optional]
fki_ezmaxpartner_id int The unique ID of the Ezmaxpartner [optional]
fki_ezmaxrepresentative_id int The unique ID of the Ezmaxrepresentative [optional]
dt_ezmaxinvoicingcommission_start str The start date for the Ezmaxinvoicingcommission
dt_ezmaxinvoicingcommission_end str The end date for the Ezmaxinvoicingcommission
i_ezmaxinvoicingcommission_days int This is the number of days during the month on which the Ezmaxinvoigcommission applies
d_ezmaxinvoicingcommission_amount str The amount of Ezmaxinvoicingcommission

Example

from eZmaxApi.models.ezmaxinvoicingcommission_response import EzmaxinvoicingcommissionResponse

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

# convert the object into a dict
ezmaxinvoicingcommission_response_dict = ezmaxinvoicingcommission_response_instance.to_dict()
# create an instance of EzmaxinvoicingcommissionResponse from a dict
ezmaxinvoicingcommission_response_from_dict = EzmaxinvoicingcommissionResponse.from_dict(ezmaxinvoicingcommission_response_dict)

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