Class: Google::Apis::DisplayvideoV2::BulkEditAdvertiserAssignedTargetingOptionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::BulkEditAdvertiserAssignedTargetingOptionsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
Request message for BulkEditAdvertiserAssignedTargetingOptions.
Instance Attribute Summary collapse
-
#create_requests ⇒ Array<Google::Apis::DisplayvideoV2::CreateAssignedTargetingOptionsRequest>
The assigned targeting options to create in batch, specified as a list of
CreateAssignedTargetingOptionsRequest
. -
#delete_requests ⇒ Array<Google::Apis::DisplayvideoV2::DeleteAssignedTargetingOptionsRequest>
The assigned targeting options to delete in batch, specified as a list of
DeleteAssignedTargetingOptionsRequest
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BulkEditAdvertiserAssignedTargetingOptionsRequest
constructor
A new instance of BulkEditAdvertiserAssignedTargetingOptionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BulkEditAdvertiserAssignedTargetingOptionsRequest
Returns a new instance of BulkEditAdvertiserAssignedTargetingOptionsRequest.
1696 1697 1698 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 1696 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_requests ⇒ Array<Google::Apis::DisplayvideoV2::CreateAssignedTargetingOptionsRequest>
The assigned targeting options to create in batch, specified as a list of
CreateAssignedTargetingOptionsRequest
. Supported targeting types: *
TARGETING_TYPE_CHANNEL
* TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION
*
TARGETING_TYPE_OMID
* TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION
*
TARGETING_TYPE_KEYWORD
Corresponds to the JSON property createRequests
1685 1686 1687 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 1685 def create_requests @create_requests end |
#delete_requests ⇒ Array<Google::Apis::DisplayvideoV2::DeleteAssignedTargetingOptionsRequest>
The assigned targeting options to delete in batch, specified as a list of
DeleteAssignedTargetingOptionsRequest
. Supported targeting types: *
TARGETING_TYPE_CHANNEL
* TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION
*
TARGETING_TYPE_OMID
* TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION
*
TARGETING_TYPE_KEYWORD
Corresponds to the JSON property deleteRequests
1694 1695 1696 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 1694 def delete_requests @delete_requests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1701 1702 1703 1704 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 1701 def update!(**args) @create_requests = args[:create_requests] if args.key?(:create_requests) @delete_requests = args[:delete_requests] if args.key?(:delete_requests) end |