Skip to content

Latest commit

 

History

History
executable file
·
37 lines (28 loc) · 1.38 KB

TaskQuote.md

File metadata and controls

executable file
·
37 lines (28 loc) · 1.38 KB

TaskQuote

List of job quotes for individual tasks in this request

Properties

Name Type Description Notes
reference str The reference given in the quote request, to help you identify this task. [optional] [readonly]
queue_code str The Queue code of the queue for this quote [optional]
iaas_cost IaasCost [optional]
software_cost SoftwareCost [optional]
service_charge ServiceCharge [optional]
discount Discount [optional]
tax Tax [optional]
total Total1 [optional]

Example

from epiccore.models.task_quote import TaskQuote

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

# convert the object into a dict
task_quote_dict = task_quote_instance.to_dict()
# create an instance of TaskQuote from a dict
task_quote_form_dict = task_quote.from_dict(task_quote_dict)

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