| Name | Type | Description | Notes |
|---|---|---|---|
| discount_entites | List[DiscountFields] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.get_discount_response import GetDiscountResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetDiscountResponse from a JSON string
get_discount_response_instance = GetDiscountResponse.from_json(json)
# print the JSON string representation of the object
print(GetDiscountResponse.to_json())
# convert the object into a dict
get_discount_response_dict = get_discount_response_instance.to_dict()
# create an instance of GetDiscountResponse from a dict
get_discount_response_from_dict = GetDiscountResponse.from_dict(get_discount_response_dict)