docs/AccountDashboardStatisticCampaigns.md in talon_one-3.0.2 vs docs/AccountDashboardStatisticCampaigns.md in talon_one-5.0.0

- old
+ new

@@ -3,17 +3,19 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **live** | **Integer** | Number of campaigns that are active and live (across all Applications). | -**ending_soon** | **Integer** | Campaigns with a schedule ending in 7 days or with only 10% of budget left. | +**ending_soon** | **Integer** | Campaigns scheduled to expire sometime in the next 7 days. | +**low_on_budget** | **Integer** | Campaigns with less than 10% of budget left. | ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::AccountDashboardStatisticCampaigns.new(live: null, - ending_soon: null) + ending_soon: null, + low_on_budget: null) ```