Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

UpdateDiscountsPayload

Properties

Name Type Description Notes
discount_resources List[DiscountResourcePayload]
discount_status str
end_date datetime [optional]
start_date datetime [optional]

Example

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)

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