pub struct FloodlightConfiguration {Show 19 fields
pub user_defined_variable_configurations: Option<Vec<UserDefinedVariableConfiguration>>,
pub third_party_authentication_tokens: Option<Vec<ThirdPartyAuthenticationToken>>,
pub kind: Option<String>,
pub advertiser_id: Option<String>,
pub tag_settings: Option<TagSettings>,
pub in_app_attribution_tracking_enabled: Option<bool>,
pub advertiser_id_dimension_value: Option<DimensionValue>,
pub subaccount_id: Option<String>,
pub id: Option<String>,
pub account_id: Option<String>,
pub natural_search_conversion_attribution_option: Option<String>,
pub omniture_settings: Option<OmnitureSettings>,
pub exposure_to_conversion_enabled: Option<bool>,
pub lookback_configuration: Option<LookbackConfiguration>,
pub first_day_of_week: Option<String>,
pub standard_variable_types: Option<Vec<String>>,
pub analytics_data_sharing_enabled: Option<bool>,
pub id_dimension_value: Option<DimensionValue>,
pub ssl_required: Option<bool>,
}Expand description
Contains properties of a Floodlight configuration.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get floodlight configurations (response)
- update floodlight configurations (request|response)
- patch floodlight configurations (request|response)
- list floodlight configurations (none)
Fields§
§user_defined_variable_configurations: Option<Vec<UserDefinedVariableConfiguration>>List of user defined variables enabled for this configuration.
third_party_authentication_tokens: Option<Vec<ThirdPartyAuthenticationToken>>List of third-party authentication tokens enabled for this configuration.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#floodlightConfiguration”.
advertiser_id: Option<String>Advertiser ID of the parent advertiser of this floodlight configuration.
tag_settings: Option<TagSettings>Configuration settings for dynamic and image floodlight tags.
in_app_attribution_tracking_enabled: Option<bool>Whether in-app attribution tracking is enabled.
advertiser_id_dimension_value: Option<DimensionValue>Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
subaccount_id: Option<String>Subaccount ID of this floodlight configuration. This is a read-only field that can be left blank.
id: Option<String>ID of this floodlight configuration. This is a read-only, auto-generated field.
account_id: Option<String>Account ID of this floodlight configuration. This is a read-only field that can be left blank.
natural_search_conversion_attribution_option: Option<String>Types of attribution options for natural search conversions.
omniture_settings: Option<OmnitureSettings>Settings for DCM Omniture integration.
exposure_to_conversion_enabled: Option<bool>Whether the exposure-to-conversion report is enabled. This report shows detailed pathway information on up to 10 of the most recent ad exposures seen by a user before converting.
lookback_configuration: Option<LookbackConfiguration>Lookback window settings for this floodlight configuration.
first_day_of_week: Option<String>Day that will be counted as the first day of the week in reports. This is a required field.
standard_variable_types: Option<Vec<String>>List of standard variables enabled for this configuration.
Acceptable values are:
- “ORD”
- “NUM”
analytics_data_sharing_enabled: Option<bool>Whether advertiser data is shared with Google Analytics.
id_dimension_value: Option<DimensionValue>Dimension value for the ID of this floodlight configuration. This is a read-only, auto-generated field.
ssl_required: Option<bool>Whether floodlight activities owned by this configuration are required to be SSL-compliant.
Trait Implementations§
Source§impl Clone for FloodlightConfiguration
impl Clone for FloodlightConfiguration
Source§fn clone(&self) -> FloodlightConfiguration
fn clone(&self) -> FloodlightConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FloodlightConfiguration
impl Debug for FloodlightConfiguration
Source§impl Default for FloodlightConfiguration
impl Default for FloodlightConfiguration
Source§fn default() -> FloodlightConfiguration
fn default() -> FloodlightConfiguration
Source§impl<'de> Deserialize<'de> for FloodlightConfiguration
impl<'de> Deserialize<'de> for FloodlightConfiguration
Source§fn 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>,
Source§impl Serialize for FloodlightConfiguration
impl Serialize for FloodlightConfiguration
impl RequestValue for FloodlightConfiguration
impl Resource for FloodlightConfiguration
impl ResponseResult for FloodlightConfiguration
Auto Trait Implementations§
impl Freeze for FloodlightConfiguration
impl RefUnwindSafe for FloodlightConfiguration
impl Send for FloodlightConfiguration
impl Sync for FloodlightConfiguration
impl Unpin for FloodlightConfiguration
impl UnwindSafe for FloodlightConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more