Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.65 KB

File metadata and controls

41 lines (32 loc) · 1.65 KB

InfrahubResourceObjectResponse

Properties

Name Type Description Notes
actual_host_price float [optional]
actual_price float [optional]
contract_id int [optional]
host str [optional]
host_price float [optional]
infrahub_id int [optional]
name str [optional]
nexgen_actual_price float [optional]
nexgen_price float [optional]
price float [optional]
resources List[PricebookResourceObjectResponse] [optional]
status str [optional]
type str [optional]

Example

from hyperstack.models.infrahub_resource_object_response import InfrahubResourceObjectResponse

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

# convert the object into a dict
infrahub_resource_object_response_dict = infrahub_resource_object_response_instance.to_dict()
# create an instance of InfrahubResourceObjectResponse from a dict
infrahub_resource_object_response_from_dict = InfrahubResourceObjectResponse.from_dict(infrahub_resource_object_response_dict)

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