Payload for GET /1/object/ezmaxinvoicing/getProvisional
| 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] |
from eZmaxApi.models.ezmaxinvoicing_get_provisional_v1_response_m_payload import EzmaxinvoicingGetProvisionalV1ResponseMPayload
# TODO update the JSON string below
json = "{}"
# create an instance of EzmaxinvoicingGetProvisionalV1ResponseMPayload from a JSON string
ezmaxinvoicing_get_provisional_v1_response_m_payload_instance = EzmaxinvoicingGetProvisionalV1ResponseMPayload.from_json(json)
# print the JSON string representation of the object
print(EzmaxinvoicingGetProvisionalV1ResponseMPayload.to_json())
# convert the object into a dict
ezmaxinvoicing_get_provisional_v1_response_m_payload_dict = ezmaxinvoicing_get_provisional_v1_response_m_payload_instance.to_dict()
# create an instance of EzmaxinvoicingGetProvisionalV1ResponseMPayload from a dict
ezmaxinvoicing_get_provisional_v1_response_m_payload_from_dict = EzmaxinvoicingGetProvisionalV1ResponseMPayload.from_dict(ezmaxinvoicing_get_provisional_v1_response_m_payload_dict)