| Name |
Type |
Description |
Notes |
| base_value |
int |
|
|
| gpu_model |
str |
|
|
| resource_type |
str |
|
|
| variation_max |
int |
|
|
| variation_min |
int |
|
|
| variation_unit |
int |
|
|
from hyperstack.models.compliance_payload import CompliancePayload
# TODO update the JSON string below
json = "{}"
# create an instance of CompliancePayload from a JSON string
compliance_payload_instance = CompliancePayload.from_json(json)
# print the JSON string representation of the object
print(CompliancePayload.to_json())
# convert the object into a dict
compliance_payload_dict = compliance_payload_instance.to_dict()
# create an instance of CompliancePayload from a dict
compliance_payload_from_dict = CompliancePayload.from_dict(compliance_payload_dict)
[Back to Model list] [Back to API list] [Back to README]