Skip to content

Latest commit

 

History

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

CostThreshold.md

File metadata and controls

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

CostThreshold

If job authorisation is enabled and all_jobs is false, jobs costing above this value will require authorisation.

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.cost_threshold import CostThreshold

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

# convert the object into a dict
cost_threshold_dict = cost_threshold_instance.to_dict()
# create an instance of CostThreshold from a dict
cost_threshold_form_dict = cost_threshold.from_dict(cost_threshold_dict)

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