Class: Google::Apis::DisplayvideoV1::AudienceGroupAssignedTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::AudienceGroupAssignedTargetingOptionDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb
Overview
Assigned audience group targeting option details. This will be populated in
the details field of an AssignedTargetingOption when targeting_type is
TARGETING_TYPE_AUDIENCE_GROUP. The relation between each group is UNION,
except for excluded_first_and_third_party_audience_group and
excluded_google_audience_group, of which COMPLEMENT is used as an INTERSECTION
with other groups.
Instance Attribute Summary collapse
-
#excluded_first_and_third_party_audience_group ⇒ Google::Apis::DisplayvideoV1::FirstAndThirdPartyAudienceGroup
Details of first and third party audience group.
-
#excluded_google_audience_group ⇒ Google::Apis::DisplayvideoV1::GoogleAudienceGroup
Details of Google audience group.
-
#included_combined_audience_group ⇒ Google::Apis::DisplayvideoV1::CombinedAudienceGroup
Details of combined audience group.
-
#included_custom_list_group ⇒ Google::Apis::DisplayvideoV1::CustomListGroup
Details of custom list group.
-
#included_first_and_third_party_audience_groups ⇒ Array<Google::Apis::DisplayvideoV1::FirstAndThirdPartyAudienceGroup>
The first and third party audience ids and recencies of included first and third party audience groups.
-
#included_google_audience_group ⇒ Google::Apis::DisplayvideoV1::GoogleAudienceGroup
Details of Google audience group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AudienceGroupAssignedTargetingOptionDetails
constructor
A new instance of AudienceGroupAssignedTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AudienceGroupAssignedTargetingOptionDetails
Returns a new instance of AudienceGroupAssignedTargetingOptionDetails.
1185 1186 1187 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#excluded_first_and_third_party_audience_group ⇒ Google::Apis::DisplayvideoV1::FirstAndThirdPartyAudienceGroup
Details of first and third party audience group. All first and third party
audience targeting settings are logically ‘OR’ of each other.
Corresponds to the JSON property excludedFirstAndThirdPartyAudienceGroup
1149 1150 1151 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1149 def excluded_first_and_third_party_audience_group @excluded_first_and_third_party_audience_group end |
#excluded_google_audience_group ⇒ Google::Apis::DisplayvideoV1::GoogleAudienceGroup
Details of Google audience group. All Google audience targeting settings are
logically ‘OR’ of each other.
Corresponds to the JSON property excludedGoogleAudienceGroup
1155 1156 1157 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1155 def excluded_google_audience_group @excluded_google_audience_group end |
#included_combined_audience_group ⇒ Google::Apis::DisplayvideoV1::CombinedAudienceGroup
Details of combined audience group. All combined audience targeting settings
are logically ‘OR’ of each other.
Corresponds to the JSON property includedCombinedAudienceGroup
1161 1162 1163 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1161 def included_combined_audience_group @included_combined_audience_group end |
#included_custom_list_group ⇒ Google::Apis::DisplayvideoV1::CustomListGroup
Details of custom list group. All custom list targeting settings are logically
‘OR’ of each other.
Corresponds to the JSON property includedCustomListGroup
1167 1168 1169 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1167 def included_custom_list_group @included_custom_list_group end |
#included_first_and_third_party_audience_groups ⇒ Array<Google::Apis::DisplayvideoV1::FirstAndThirdPartyAudienceGroup>
The first and third party audience ids and recencies of included first and
third party audience groups. Each first and third party audience group
contains first and third party audience ids only. The relation between each
first and third party audience group is INTERSECTION, and the result is UNION'
ed with other audience groups. Repeated groups with same settings will be
ignored.
Corresponds to the JSON property includedFirstAndThirdPartyAudienceGroups
1177 1178 1179 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1177 def included_first_and_third_party_audience_groups @included_first_and_third_party_audience_groups end |
#included_google_audience_group ⇒ Google::Apis::DisplayvideoV1::GoogleAudienceGroup
Details of Google audience group. All Google audience targeting settings are
logically ‘OR’ of each other.
Corresponds to the JSON property includedGoogleAudienceGroup
1183 1184 1185 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1183 def included_google_audience_group @included_google_audience_group end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 1194 1195 1196 1197 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 1190 def update!(**args) @excluded_first_and_third_party_audience_group = args[:excluded_first_and_third_party_audience_group] if args.key?(:excluded_first_and_third_party_audience_group) @excluded_google_audience_group = args[:excluded_google_audience_group] if args.key?(:excluded_google_audience_group) @included_combined_audience_group = args[:included_combined_audience_group] if args.key?(:included_combined_audience_group) @included_custom_list_group = args[:included_custom_list_group] if args.key?(:included_custom_list_group) @included_first_and_third_party_audience_groups = args[:included_first_and_third_party_audience_groups] if args.key?(:included_first_and_third_party_audience_groups) @included_google_audience_group = args[:included_google_audience_group] if args.key?(:included_google_audience_group) end |