Class: Google::Apis::Adexchangebuyer2V2beta1::VideoTargeting

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb

Overview

Represents targeting information about video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VideoTargeting

Returns a new instance of VideoTargeting.



4115
4116
4117
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 4115

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#excluded_position_typesArray<String>

A list of video positions to be excluded. Position types can either be included or excluded (XOR). Corresponds to the JSON property excludedPositionTypes

Returns:

  • (Array<String>)


4106
4107
4108
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 4106

def excluded_position_types
  @excluded_position_types
end

#targeted_position_typesArray<String>

A list of video positions to be included. When the included list is present, the excluded list must be empty. When the excluded list is present, the included list must be empty. Corresponds to the JSON property targetedPositionTypes

Returns:

  • (Array<String>)


4113
4114
4115
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 4113

def targeted_position_types
  @targeted_position_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4120
4121
4122
4123
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 4120

def update!(**args)
  @excluded_position_types = args[:excluded_position_types] if args.key?(:excluded_position_types)
  @targeted_position_types = args[:targeted_position_types] if args.key?(:targeted_position_types)
end