Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

UpdateDiscountsPayload

Properties

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

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_form_dict = update_discounts_payload.from_dict(update_discounts_payload_dict)

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