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
·
30 lines (21 loc) · 1002 Bytes

File metadata and controls

executable file
·
30 lines (21 loc) · 1002 Bytes

JobQuote

Properties

Name Type Description Notes
task_quotes List[TaskQuote] List of job quotes for individual tasks in this request [optional]
totals List[TaskQuote] List of job quote totals for this request [optional]

Example

from epiccore.models.job_quote import JobQuote

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

# convert the object into a dict
job_quote_dict = job_quote_instance.to_dict()
# create an instance of JobQuote from a dict
job_quote_form_dict = job_quote.from_dict(job_quote_dict)

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