Struct google_dfareporting3d4::api::TechnologyTargeting[][src]

pub struct TechnologyTargeting {
    pub browsers: Option<Vec<Browser>>,
    pub connection_types: Option<Vec<ConnectionType>>,
    pub mobile_carriers: Option<Vec<MobileCarrier>>,
    pub operating_system_versions: Option<Vec<OperatingSystemVersion>>,
    pub operating_systems: Option<Vec<OperatingSystem>>,
    pub platform_types: Option<Vec<PlatformType>>,
}

Technology Targeting.

This type is not used in any activity, and only used as part of another schema.

Fields

browsers: Option<Vec<Browser>>

Browsers that this ad targets. For each browser either set browserVersionId or dartId along with the version numbers. If both are specified, only browserVersionId will be used. The other fields are populated automatically when the ad is inserted or updated.

connection_types: Option<Vec<ConnectionType>>

Connection types that this ad targets. For each connection type only id is required. The other fields are populated automatically when the ad is inserted or updated.

mobile_carriers: Option<Vec<MobileCarrier>>

Mobile carriers that this ad targets. For each mobile carrier only id is required, and the other fields are populated automatically when the ad is inserted or updated. If targeting a mobile carrier, do not set targeting for any zip codes.

operating_system_versions: Option<Vec<OperatingSystemVersion>>

Operating system versions that this ad targets. To target all versions, use operatingSystems. For each operating system version, only id is required. The other fields are populated automatically when the ad is inserted or updated. If targeting an operating system version, do not set targeting for the corresponding operating system in operatingSystems.

operating_systems: Option<Vec<OperatingSystem>>

Operating systems that this ad targets. To target specific versions, use operatingSystemVersions. For each operating system only dartId is required. The other fields are populated automatically when the ad is inserted or updated. If targeting an operating system, do not set targeting for operating system versions for the same operating system.

platform_types: Option<Vec<PlatformType>>

Platform types that this ad targets. For example, desktop, mobile, or tablet. For each platform type, only id is required, and the other fields are populated automatically when the ad is inserted or updated.

Trait Implementations

impl Clone for TechnologyTargeting[src]

impl Debug for TechnologyTargeting[src]

impl Default for TechnologyTargeting[src]

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

impl Part for TechnologyTargeting[src]

impl Serialize for TechnologyTargeting[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.