| Name | Type | Description | Notes |
|---|---|---|---|
| discount_resources | List[DiscountResourcePayload] | ||
| discount_status | str | ||
| end_date | datetime | [optional] | |
| start_date | datetime | [optional] |
from hyperstack.models.update_discounts_payload import UpdateDiscountsPayload
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDiscountsPayload from a JSON string
update_discounts_payload_instance = UpdateDiscountsPayload.from_json(json)
# print the JSON string representation of the object
print(UpdateDiscountsPayload.to_json())
# convert the object into a dict
update_discounts_payload_dict = update_discounts_payload_instance.to_dict()
# create an instance of UpdateDiscountsPayload from a dict
update_discounts_payload_from_dict = UpdateDiscountsPayload.from_dict(update_discounts_payload_dict)