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
·
31 lines (22 loc) · 1.1 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.1 KB

PriceQuote

Properties

Name Type Description Notes
cost Cost [optional]
valid bool Whether the requested spec represents a valid configuration that could be launched [optional] [readonly]
reason str If the configuration is invalid this string will contain the reason why the configuration is not valid [optional] [readonly]

Example

from epiccore.models.price_quote import PriceQuote

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

# convert the object into a dict
price_quote_dict = price_quote_instance.to_dict()
# create an instance of PriceQuote from a dict
price_quote_form_dict = price_quote.from_dict(price_quote_dict)

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