Class: Google::Apis::DisplayvideoV2::CreateAssignedTargetingOptionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::CreateAssignedTargetingOptionsRequest
- 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
A request listing which assigned targeting options of a given targeting type should be created and added.
Instance Attribute Summary collapse
-
#assigned_targeting_options ⇒ Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>
Required.
-
#targeting_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateAssignedTargetingOptionsRequest
constructor
A new instance of CreateAssignedTargetingOptionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateAssignedTargetingOptionsRequest
Returns a new instance of CreateAssignedTargetingOptionsRequest.
3583 3584 3585 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 3583 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assigned_targeting_options ⇒ Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>
Required. The assigned targeting options to create and add.
Corresponds to the JSON property assignedTargetingOptions
3576 3577 3578 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 3576 def @assigned_targeting_options end |
#targeting_type ⇒ String
Required. Identifies the type of this assigned targeting option.
Corresponds to the JSON property targetingType
3581 3582 3583 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 3581 def targeting_type @targeting_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3588 3589 3590 3591 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 3588 def update!(**args) @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options) @targeting_type = args[:targeting_type] if args.key?(:targeting_type) end |