[][src]Struct mailchimp::types::ReportType

pub struct ReportType {
    pub id: String,
    pub campaign_title: String,
    pub report_type: String,
    pub list_id: String,
    pub list_is_active: bool,
    pub list_name: String,
    pub subject_line: String,
    pub preview_text: String,
    pub emails_sent: u64,
    pub abuse_reports: u64,
    pub unsubscribed: u64,
    pub send_time: String,
    pub rss_last_send: String,
    pub bounces: HardBouncesType,
    pub forwards: ForwardsType,
    pub opens: OpensType,
    pub clicks: ClicksType,
    pub facebook_likes: FacebookLikesType,
    pub industry_stats: IndustryStatsType,
    pub list_stats: ListStatsType,
    pub ab_split: AbSplitStatsType,
    pub timewarp: Vec<TimewarpStatsType>,
    pub timeseries: Vec<TimeSerieType>,
    pub share_report: ShareReportType,
    pub ecommerce: ECommerceReportType,
    pub delivery_status: CampaignDeliveryStatusType,
    pub _links: Vec<LinkType>,
}

Fields

id: String

A string that uniquely identifies this campaign.

campaign_title: String

The title of the campaign.

report_type: String

The type of campaign (regular, plain-text, ab_split, rss, automation, variate, or auto).

list_id: String

The unique list id.

list_is_active: bool

The status of the list used, namely if it’s deleted or disabled.

list_name: String

The name of the list.

subject_line: String

The subject line for the campaign.

preview_text: String

The preview text for the campaign.

emails_sent: u64

The total number of emails sent for this campaign.

abuse_reports: u64

The number of abuse reports generated for this campaign.

unsubscribed: u64

The total number of unsubscribed members for this campaign.

send_time: String

The date and time a campaign was sent in ISO 8601 format.

rss_last_send: String

For RSS campaigns, the date and time of the last send in ISO 8601 format.

bounces: HardBouncesType

An object describing the bounce summary for the campaign.

forwards: ForwardsType

An object describing the forwards and forward activity for the campaign.

opens: OpensType

An object describing the open activity for the campaign.

clicks: ClicksType

An object describing the click activity for the campaign.

facebook_likes: FacebookLikesType

An object describing campaign engagement on Facebook.

industry_stats: IndustryStatsType

The average campaign statistics for your industry.

list_stats: ListStatsType

The average campaign statistics for your list. This won’t be present if we haven’t calculated it yet for this list.

ab_split: AbSplitStatsType

General stats about different groups of an A/B Split campaign. Does not return information about Mailchimp Pro’s Multivariate Campaigns.

timewarp: Vec<TimewarpStatsType>

An hourly breakdown of sends, opens, and clicks if a campaign is sent using timewarp.

timeseries: Vec<TimeSerieType>

An hourly breakdown of the performance of the campaign over the first 24 hours.

share_report: ShareReportType

The url and password for the VIP report.

ecommerce: ECommerceReportType

E-Commerce stats for a campaign.

delivery_status: CampaignDeliveryStatusType

Updates on campaigns in the process of sending.

_links: Vec<LinkType>

A list of link types and descriptions for the API schema documents.

Trait Implementations

impl MailchimpCollection<ReportType> for CollectionReports[src]

fn get_total_items(&self) -> u64[src]

Total Items

fn get_values(&self) -> Vec<ReportType>[src]

Data

impl Clone for ReportType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ReportType[src]

impl Serialize for ReportType[src]

impl<'de> Deserialize<'de> for ReportType[src]

Auto Trait Implementations

impl Send for ReportType

impl Sync for ReportType

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err