Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

CustomEzmaxpricingResponse

A Custom Ezmaxpricing Object

Properties

Name Type Description Notes
pki_ezmaxpricing_id int The unique ID of the Ezmaxpricing
d_ezmaxpricing_rebateezsignallagents str The rebate offered when eZsign is taken for all agents
dt_ezmaxpricing_start str The start date of the Ezmaxpricing
dt_ezmaxpricing_end str The end date of the Ezmaxpricing [optional]

Example

from eZmaxApi.models.custom_ezmaxpricing_response import CustomEzmaxpricingResponse

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

# convert the object into a dict
custom_ezmaxpricing_response_dict = custom_ezmaxpricing_response_instance.to_dict()
# create an instance of CustomEzmaxpricingResponse from a dict
custom_ezmaxpricing_response_from_dict = CustomEzmaxpricingResponse.from_dict(custom_ezmaxpricing_response_dict)

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