Name | Type | Description | Notes |
---|---|---|---|
global_stats | GetCampaignStats | Overall statistics of the campaign | |
campaign_stats | Array<GetCampaignStats> | List-wise statistics of the campaign. | |
mirror_click | Integer | Number of clicks on mirror link | |
remaining | Integer | Number of remaning emails to send | |
links_stats | Object | Statistics about the number of clicks for the links | |
stats_by_domain | Hash<String, GetCampaignStats> | ||
stats_by_device | GetStatsByDevice | ||
stats_by_browser | Hash<String, GetDeviceBrowserStats> |
require 'brevo'
instance = Brevo::GetExtendedCampaignStats.new(
global_stats: null,
campaign_stats: null,
mirror_click: 120,
remaining: 1000,
links_stats: {"example.abc.com":7,"example.domain.com":10},
stats_by_domain: null,
stats_by_device: null,
stats_by_browser: null
)