| Name | Type | Description | Notes |
|---|---|---|---|
| discounts_entity | DiscountEntityModel | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.get_discount_detail_response import GetDiscountDetailResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetDiscountDetailResponse from a JSON string
get_discount_detail_response_instance = GetDiscountDetailResponse.from_json(json)
# print the JSON string representation of the object
print(GetDiscountDetailResponse.to_json())
# convert the object into a dict
get_discount_detail_response_dict = get_discount_detail_response_instance.to_dict()
# create an instance of GetDiscountDetailResponse from a dict
get_discount_detail_response_from_dict = GetDiscountDetailResponse.from_dict(get_discount_detail_response_dict)