Class: Google::Apis::DisplayvideoV3::ChannelAssignedTargetingOptionDetails

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

Overview

Details for assigned channel targeting option. This will be populated in the details field of an AssignedTargetingOption when targeting_type is TARGETING_TYPE_CHANNEL.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChannelAssignedTargetingOptionDetails

Returns a new instance of ChannelAssignedTargetingOptionDetails.



3356
3357
3358
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3356

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

Instance Attribute Details

#channel_idFixnum

Required. ID of the channel. Should refer to the channel ID field on a Partner-owned channel or advertiser-owned channel resource. Corresponds to the JSON property channelId

Returns:

  • (Fixnum)


3347
3348
3349
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3347

def channel_id
  @channel_id
end

#negativeBoolean Also known as: negative?

Indicates if this option is being negatively targeted. For advertiser level assigned targeting option, this field must be true. Corresponds to the JSON property negative

Returns:

  • (Boolean)


3353
3354
3355
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3353

def negative
  @negative
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3361
3362
3363
3364
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3361

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