The promotions applied to the product. A maximum of 10 values are allowed per product.
| Name | Type | Description | Notes |
|---|---|---|---|
| promotion_id | str | ID of the promotion. For example, 'free gift'. Length limit of 128 characters. | [optional] |
from gb_retailapi_client.models.promotion import Promotion
# TODO update the JSON string below
json = "{}"
# create an instance of Promotion from a JSON string
promotion_instance = Promotion.from_json(json)
# print the JSON string representation of the object
print Promotion.to_json()
# convert the object into a dict
promotion_dict = promotion_instance.to_dict()
# create an instance of Promotion from a dict
promotion_form_dict = promotion.from_dict(promotion_dict)