class Google::Apis::DfareportingV3_3::TechnologyTargeting
Technology Targeting.
Attributes
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. Corresponds to the JSON property `browsers` @return [Array<Google::Apis::DfareportingV3_3::Browser>]
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. Corresponds to the JSON property `connectionTypes` @return [Array<Google::Apis::DfareportingV3_3::ConnectionType>]
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. Corresponds to the JSON property `mobileCarriers` @return [Array<Google::Apis::DfareportingV3_3::MobileCarrier>]
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. Corresponds to the JSON property `operatingSystemVersions` @return [Array<Google::Apis::DfareportingV3_3::OperatingSystemVersion>]
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. Corresponds to the JSON property `operatingSystems` @return [Array<Google::Apis::DfareportingV3_3::OperatingSystem>]
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. Corresponds to the JSON property `platformTypes` @return [Array<Google::Apis::DfareportingV3_3::PlatformType>]
Public Class Methods
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 11518 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 11523 def update!(**args) @browsers = args[:browsers] if args.key?(:browsers) @connection_types = args[:connection_types] if args.key?(:connection_types) @mobile_carriers = args[:mobile_carriers] if args.key?(:mobile_carriers) @operating_system_versions = args[:operating_system_versions] if args.key?(:operating_system_versions) @operating_systems = args[:operating_systems] if args.key?(:operating_systems) @platform_types = args[:platform_types] if args.key?(:platform_types) end