| Name |
Type |
Description |
Notes |
| cluster |
ClusterFields |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| flavor_name |
str |
|
[optional] |
| gpu_count |
int |
|
[optional] |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| status |
str |
|
[optional] |
| termination_time |
datetime |
|
[optional] |
| total_usage_time |
int |
|
[optional] |
from hyperstack.models.contract_instance_fields import ContractInstanceFields
# TODO update the JSON string below
json = "{}"
# create an instance of ContractInstanceFields from a JSON string
contract_instance_fields_instance = ContractInstanceFields.from_json(json)
# print the JSON string representation of the object
print(ContractInstanceFields.to_json())
# convert the object into a dict
contract_instance_fields_dict = contract_instance_fields_instance.to_dict()
# create an instance of ContractInstanceFields from a dict
contract_instance_fields_from_dict = ContractInstanceFields.from_dict(contract_instance_fields_dict)
[Back to Model list] [Back to API list] [Back to README]