Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

File metadata and controls

34 lines (25 loc) · 1.24 KB

GetAllDiscountsFields

Properties

Name Type Description Notes
discount_resources List[DiscountResourceFields] [optional]
discount_status str [optional]
end_date datetime [optional]
org_id int [optional]
org_name str [optional]
start_date datetime [optional]

Example

from hyperstack.models.get_all_discounts_fields import GetAllDiscountsFields

# TODO update the JSON string below
json = "{}"
# create an instance of GetAllDiscountsFields from a JSON string
get_all_discounts_fields_instance = GetAllDiscountsFields.from_json(json)
# print the JSON string representation of the object
print(GetAllDiscountsFields.to_json())

# convert the object into a dict
get_all_discounts_fields_dict = get_all_discounts_fields_instance.to_dict()
# create an instance of GetAllDiscountsFields from a dict
get_all_discounts_fields_from_dict = GetAllDiscountsFields.from_dict(get_all_discounts_fields_dict)

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