Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.97 KB

EzmaxinvoicingcontractResponseCompound.md

File metadata and controls

38 lines (29 loc) · 1.97 KB

EzmaxinvoicingcontractResponseCompound

A Ezmaxinvoicingcontract Object

Properties

Name Type Description Notes
pki_ezmaxinvoicingcontract_id int The unique ID of the Ezmaxinvoicingcontract
e_ezmaxinvoicingcontract_paymenttype FieldEEzmaxinvoicingcontractPaymenttype
i_ezmaxinvoicingcontract_length int The length in years of the Ezmaxinvoicingcontract
dt_ezmaxinvoicingcontract_start str The start date of the Ezmaxinvoicingcontract
dt_ezmaxinvoicingcontract_end str The end date of the Ezmaxinvoicingcontract
d_ezmaxinvoicingcontract_license str The price of the license
d_ezmaxinvoicingcontract121qa str The price for 121QA
b_ezmaxinvoicingcontract_ezsignallagents bool Whether eZsign is for all agents
obj_audit CommonAudit

Example

from eZmaxApi.models.ezmaxinvoicingcontract_response_compound import EzmaxinvoicingcontractResponseCompound

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

# convert the object into a dict
ezmaxinvoicingcontract_response_compound_dict = ezmaxinvoicingcontract_response_compound_instance.to_dict()
# create an instance of EzmaxinvoicingcontractResponseCompound from a dict
ezmaxinvoicingcontract_response_compound_from_dict = EzmaxinvoicingcontractResponseCompound.from_dict(ezmaxinvoicingcontract_response_compound_dict)

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