Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 3.46 KB

EzmaxinvoicingResponseCompound.md

File metadata and controls

51 lines (42 loc) · 3.46 KB

EzmaxinvoicingResponseCompound

A Ezmaxinvoicing Object

Properties

Name Type Description Notes
pki_ezmaxinvoicing_id int The unique ID of the Ezmaxinvoicing [optional]
fki_ezmaxinvoicingcontract_id int The unique ID of the Ezmaxinvoicingcontract
fki_ezmaxpricing_id int The unique ID of the Ezmaxpricing
fki_systemconfigurationtype_id int The unique ID of the Systemconfigurationtype
s_systemconfigurationtype_description_x str The description of the Systemconfigurationtype in the language of the requester
yyyymm_ezmaxinvoicing str The YYYYMM period of the Ezmaxinvoicing
i_ezmaxinvoicing_days int The number of days invoiced
e_ezmaxinvoicing_paymenttype FieldEEzmaxinvoicingPaymenttype
d_ezmaxinvoicing_rebatepaymenttype str The percentage of rebate depending of the payment type
i_ezmaxinvoicing_contractlength int The length of the contract in years
d_ezmaxinvoicing_rebatecontractlength str The percentage of rebate depending of the contract length
b_ezmaxinvoicing_rebate_ezsignallagents bool Whether the rebate for eZsign is for all agents
obj_audit CommonAudit [optional]
obj_ezmaxinvoicingcontract EzmaxinvoicingcontractResponseCompound
obj_ezmaxpricing CustomEzmaxpricingResponse
a_obj_ezmaxinvoicingsummaryglobal List[EzmaxinvoicingsummaryglobalResponseCompound]
a_obj_ezmaxinvoicingsummaryexternal List[EzmaxinvoicingsummaryexternalResponseCompound]
a_obj_ezmaxinvoicingsummaryinternal List[EzmaxinvoicingsummaryinternalResponseCompound]
a_obj_ezmaxinvoicingagent List[EzmaxinvoicingagentResponseCompound]
a_obj_ezmaxinvoicinguser List[EzmaxinvoicinguserResponseCompound]
a_obj_ezmaxinvoicingezsignfolder List[CustomEzmaxinvoicingEzsignfolderResponse]
a_obj_ezmaxinvoicingezsigndocument List[CustomEzmaxinvoicingEzsigndocumentResponse]

Example

from eZmaxApi.models.ezmaxinvoicing_response_compound import EzmaxinvoicingResponseCompound

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

# convert the object into a dict
ezmaxinvoicing_response_compound_dict = ezmaxinvoicing_response_compound_instance.to_dict()
# create an instance of EzmaxinvoicingResponseCompound from a dict
ezmaxinvoicing_response_compound_from_dict = EzmaxinvoicingResponseCompound.from_dict(ezmaxinvoicing_response_compound_dict)

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