Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.18 KB

GetExtendedCampaignStats.md

File metadata and controls

32 lines (26 loc) · 1.18 KB

Brevo::GetExtendedCampaignStats

Properties

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>

Example

require 'brevo'

instance = Brevo::GetExtendedCampaignStats.new(
  global_stats: null,
  campaign_stats: null,
  mirror_click: 120,
  remaining: 1000,
  links_stats: {&quot;example.abc.com&quot;:7,&quot;example.domain.com&quot;:10},
  stats_by_domain: null,
  stats_by_device: null,
  stats_by_browser: null
)