class Google::Apis::AuthorizedbuyersmarketplaceV1::VideoTargeting
Represents targeting information about video.
Attributes
excluded_position_types[RW]
A list of video positions to be excluded. When this field is populated, the targeted_position_types
field must be empty. Corresponds to the JSON property ‘excludedPositionTypes` @return [Array<String>]
targeted_position_types[RW]
A list of video positions to be included. When this field is populated, the excluded_position_types
field must be empty. Corresponds to the JSON property ‘targetedPositionTypes` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 2242 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 2247 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