| Name |
Type |
Description |
Notes |
| discount_status |
str |
|
[optional] |
| end_date |
datetime |
|
[optional] |
| org_id |
int |
|
[optional] |
| org_name |
str |
|
[optional] |
| plan_type |
str |
|
[optional] |
| vm_id |
int |
|
[optional] |
| vm_name |
str |
|
[optional] |
from hyperstack.models.discount_fields import DiscountFields
# TODO update the JSON string below
json = "{}"
# create an instance of DiscountFields from a JSON string
discount_fields_instance = DiscountFields.from_json(json)
# print the JSON string representation of the object
print(DiscountFields.to_json())
# convert the object into a dict
discount_fields_dict = discount_fields_instance.to_dict()
# create an instance of DiscountFields from a dict
discount_fields_from_dict = DiscountFields.from_dict(discount_fields_dict)
[Back to Model list] [Back to API list] [Back to README]