| Name | Type | Description | Notes |
|---|---|---|---|
| customers | List[CustomerFields] | [optional] | |
| discount_resources | List[DiscountResourceFields] | [optional] | |
| discount_status | str | [optional] | |
| end_date | datetime | [optional] | |
| start_date | datetime | [optional] |
from hyperstack.models.insert_discount_plan_fields import InsertDiscountPlanFields
# TODO update the JSON string below
json = "{}"
# create an instance of InsertDiscountPlanFields from a JSON string
insert_discount_plan_fields_instance = InsertDiscountPlanFields.from_json(json)
# print the JSON string representation of the object
print(InsertDiscountPlanFields.to_json())
# convert the object into a dict
insert_discount_plan_fields_dict = insert_discount_plan_fields_instance.to_dict()
# create an instance of InsertDiscountPlanFields from a dict
insert_discount_plan_fields_from_dict = InsertDiscountPlanFields.from_dict(insert_discount_plan_fields_dict)