You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The limitable action to which this limit applies. For example: - `setDiscount` - `setDiscountEffect` - `redeemCoupon` - `createCoupon`
limit
float
The value to set for the limit.
period
str
The period on which the budget limit recurs.
[optional]
entities
List[str]
The entity that this limit applies to.
imported
bool
Indicates whether this limit configuration is managed via a CSV file.
Example
fromtalon_one.models.campaign_store_budget_limit_configimportCampaignStoreBudgetLimitConfig# TODO update the JSON string belowjson="{}"# create an instance of CampaignStoreBudgetLimitConfig from a JSON stringcampaign_store_budget_limit_config_instance=CampaignStoreBudgetLimitConfig.from_json(json)
# print the JSON string representation of the objectprint(CampaignStoreBudgetLimitConfig.to_json())
# convert the object into a dictcampaign_store_budget_limit_config_dict=campaign_store_budget_limit_config_instance.to_dict()
# create an instance of CampaignStoreBudgetLimitConfig from a dictcampaign_store_budget_limit_config_from_dict=CampaignStoreBudgetLimitConfig.from_dict(campaign_store_budget_limit_config_dict)