Class: Google::Apis::DisplayvideoV4::ThirdPartyMeasurementConfigs
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV4::ThirdPartyMeasurementConfigs
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v4/classes.rb,
lib/google/apis/displayvideo_v4/representations.rb,
lib/google/apis/displayvideo_v4/representations.rb
Overview
Settings that control what third-party vendors are measuring specific line item metrics.
Instance Attribute Summary collapse
-
#brand_lift_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional.
-
#brand_safety_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional.
-
#reach_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional.
-
#viewability_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThirdPartyMeasurementConfigs
constructor
A new instance of ThirdPartyMeasurementConfigs.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ThirdPartyMeasurementConfigs
Returns a new instance of ThirdPartyMeasurementConfigs.
13722 13723 13724 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13722 def initialize(**args) update!(**args) end |
Instance Attribute Details
#brand_lift_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional. The third-party vendors measuring brand lift. The following third-
party vendors are applicable: * THIRD_PARTY_VENDOR_DYNATA *
THIRD_PARTY_VENDOR_KANTAR * THIRD_PARTY_VENDOR_INTAGE *
THIRD_PARTY_VENDOR_NIELSEN * THIRD_PARTY_VENDOR_MACROMILL
Corresponds to the JSON property brandLiftVendorConfigs
13694 13695 13696 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13694 def brand_lift_vendor_configs @brand_lift_vendor_configs end |
#brand_safety_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional. The third-party vendors measuring brand safety. The following third-
party vendors are applicable: * THIRD_PARTY_VENDOR_ZEFR *
THIRD_PARTY_VENDOR_DOUBLE_VERIFY * THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE
Corresponds to the JSON property brandSafetyVendorConfigs
13701 13702 13703 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13701 def brand_safety_vendor_configs @brand_safety_vendor_configs end |
#reach_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional. The third-party vendors measuring reach. The following third-party
vendors are applicable: * THIRD_PARTY_VENDOR_NIELSEN *
THIRD_PARTY_VENDOR_COMSCORE * THIRD_PARTY_VENDOR_KANTAR *
THIRD_PARTY_VENDOR_VIDEO_RESEARCH * THIRD_PARTY_VENDOR_MEDIA_SCOPE *
THIRD_PARTY_VENDOR_AUDIENCE_PROJECT * THIRD_PARTY_VENDOR_VIDEO_AMP *
THIRD_PARTY_VENDOR_ISPOT_TV * THIRD_PARTY_VENDOR_GEMIUS
Corresponds to the JSON property reachVendorConfigs
13711 13712 13713 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13711 def reach_vendor_configs @reach_vendor_configs end |
#viewability_vendor_configs ⇒ Array<Google::Apis::DisplayvideoV4::ThirdPartyVendorConfig>
Optional. The third-party vendors measuring viewability. The following third-
party vendors are applicable: * THIRD_PARTY_VENDOR_MOAT *
THIRD_PARTY_VENDOR_DOUBLE_VERIFY * THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE *
THIRD_PARTY_VENDOR_COMSCORE * THIRD_PARTY_VENDOR_TELEMETRY *
THIRD_PARTY_VENDOR_MEETRICS
Corresponds to the JSON property viewabilityVendorConfigs
13720 13721 13722 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13720 def viewability_vendor_configs @viewability_vendor_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13727 13728 13729 13730 13731 13732 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 13727 def update!(**args) @brand_lift_vendor_configs = args[:brand_lift_vendor_configs] if args.key?(:brand_lift_vendor_configs) @brand_safety_vendor_configs = args[:brand_safety_vendor_configs] if args.key?(:brand_safety_vendor_configs) @reach_vendor_configs = args[:reach_vendor_configs] if args.key?(:reach_vendor_configs) @viewability_vendor_configs = args[:viewability_vendor_configs] if args.key?(:viewability_vendor_configs) end |