Class: Google::Apis::DisplayvideoV1::ChannelAssignedTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::ChannelAssignedTargetingOptionDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/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
-
#channel_id ⇒ Fixnum
Required.
-
#negative ⇒ Boolean
(also: #negative?)
Indicates if this option is being negatively targeted.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelAssignedTargetingOptionDetails
constructor
A new instance of ChannelAssignedTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChannelAssignedTargetingOptionDetails
Returns a new instance of ChannelAssignedTargetingOptionDetails.
2124 2125 2126 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 2124 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_id ⇒ Fixnum
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
2115 2116 2117 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 2115 def channel_id @channel_id end |
#negative ⇒ Boolean 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
2121 2122 2123 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 2121 def negative @negative end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2129 2130 2131 2132 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 2129 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @negative = args[:negative] if args.key?(:negative) end |