Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

CreateDiscountResponse.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

CreateDiscountResponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
discount_plan InsertDiscountPlanFields [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]