1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
use super::contact::ContactType;
use super::link::LinkType;
// ============ Contact ==============
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct IndustryStatsType {
/// The average unique open rate for all campaigns in the account’s specified industry.
#[serde(default)]
pub open_rate: f32,
/// The average bounce rate for all campaigns in the account’s specified industry.
#[serde(default)]
pub bounce_rate: f32,
/// The average unique click rate for all campaigns in the account’s specified industry.
#[serde(default)]
pub click_rate: f32,
}
impl Default for IndustryStatsType {
fn default() -> Self {
IndustryStatsType {
open_rate: 0.0,
bounce_rate: 0.0,
click_rate: 0.0,
}
}
}
// ============ API Root ==============
// GET /
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ApiRootType {
/// The Mailchimp account ID, used for features like list subscribe forms.
#[serde(default)]
pub account_id: String,
/// The ID associated with the user who owns this API key. If you can
/// login to multiple accounts, this ID will be the same for each account.
#[serde(default)]
pub login_id: String,
/// The name of the account.
#[serde(default)]
pub account_name: String,
/// The account email address.
#[serde(default)]
pub email: String,
/// The first name tied to the account.
#[serde(default)]
pub first_name: String,
/// The last name tied to the account.
#[serde(default)]
pub last_name: String,
/// The username tied to the account.
#[serde(default)]
pub username: String,
/// URL of the avatar for the user.
#[serde(default)]
pub avatar_url: String,
/// The user role for the account.
#[serde(default)]
pub role: String,
/// The date and time that the account was created in ISO 8601 format.
#[serde(default)]
pub member_since: String,
/// The type of pricing plan the account is on.
/// Possible Values:
/// monthly pay_as_you_go forever_free
#[serde(default)]
pub pricing_plan_type: String,
/// Date of first payment for monthly plans.
#[serde(default)]
pub first_payment: String,
/// The timezone currently set for the account.
#[serde(default)]
pub account_timezone: String,
/// The user-specified industry associated with the account.
#[serde(default)]
pub account_industry: String,
/// Information about the account contact.
#[serde(default)]
pub contact: ContactType,
/// Whether the account includes Mailchimp Pro.
#[serde(default)]
pub pro_enabled: bool,
/// The date and time of the last login for this account in ISO 8601 format.
#[serde(default)]
pub last_login: String,
/// The total number of subscribers across all lists in the account.
#[serde(default)]
pub total_subscribers: u64,
/// The average campaign statistics for all campaigns in the account’s specified industry.
#[serde(default)]
pub industry_stats: IndustryStatsType,
/// The average campaign statistics for all campaigns in the account’s specified industry.
#[serde(default)]
pub _links: Vec<LinkType>,
}