| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| organization | List[DiscountPlanFields] | [optional] | |
| status | bool | [optional] | |
| virtual_machine | List[DiscountPlanFields] | [optional] |
from hyperstack.models.get_entity_discount_detail_response import GetEntityDiscountDetailResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetEntityDiscountDetailResponse from a JSON string
get_entity_discount_detail_response_instance = GetEntityDiscountDetailResponse.from_json(json)
# print the JSON string representation of the object
print(GetEntityDiscountDetailResponse.to_json())
# convert the object into a dict
get_entity_discount_detail_response_dict = get_entity_discount_detail_response_instance.to_dict()
# create an instance of GetEntityDiscountDetailResponse from a dict
get_entity_discount_detail_response_from_dict = GetEntityDiscountDetailResponse.from_dict(get_entity_discount_detail_response_dict)