Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
message | str | [optional] | |
discount_plan | InsertDiscountPlanFields | [optional] |
from hyperstack.models.create_discount_response import CreateDiscountResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateDiscountResponse from a JSON string
create_discount_response_instance = CreateDiscountResponse.from_json(json)
# print the JSON string representation of the object
print CreateDiscountResponse.to_json()
# convert the object into a dict
create_discount_response_dict = create_discount_response_instance.to_dict()
# create an instance of CreateDiscountResponse from a dict
create_discount_response_form_dict = create_discount_response.from_dict(create_discount_response_dict)