Struct mailchimp_api::types::Tracking
source · pub struct Tracking {
pub capsule: Option<Capsule>,
pub clicktale: String,
pub ecomm_360: bool,
pub goal_tracking: bool,
pub google_analytics: String,
pub html_clicks: bool,
pub opens: bool,
pub salesforce: Option<Salesforce>,
pub text_clicks: bool,
}
Expand description
The tracking options for the Automation.
Fields
capsule: Option<Capsule>
The tracking options for the Automation.
clicktale: String
The tracking options for the Automation.
ecomm_360: bool
The tracking options for the Automation.
goal_tracking: bool
The tracking options for the Automation.
google_analytics: String
The tracking options for the Automation.
html_clicks: bool
The tracking options for the Automation.
opens: bool
The tracking options for the Automation.
salesforce: Option<Salesforce>
The tracking options for the Automation.
text_clicks: bool
The tracking options for the Automation.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Tracking
impl<'de> Deserialize<'de> for Tracking
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for Tracking
impl JsonSchema for Tracking
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Tracking
Auto Trait Implementations
impl RefUnwindSafe for Tracking
impl Send for Tracking
impl Sync for Tracking
impl Unpin for Tracking
impl UnwindSafe for Tracking
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more