Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.01 KB

File metadata and controls

executable file
·
32 lines (23 loc) · 1.01 KB

ServiceCharge

The EPIC service charge for the job.

Properties

Name Type Description Notes
amount float Amount of the currency
currency str Type of currency
currency_symbol str Symbol to be used for this currency

Example

from epiccore.models.service_charge import ServiceCharge

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

# convert the object into a dict
service_charge_dict = service_charge_instance.to_dict()
# create an instance of ServiceCharge from a dict
service_charge_form_dict = service_charge.from_dict(service_charge_dict)

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