Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

InsertDiscountPlanFields

Properties

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]

Example

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)

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