Class: Google::Apis::DisplayvideoV1::ListAdvertiserAssignedTargetingOptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::ListAdvertiserAssignedTargetingOptionsResponse
- 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
Response message for ListAdvertiserAssignedTargetingOptions.
Instance Attribute Summary collapse
-
#assigned_targeting_options ⇒ Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>
The list of assigned targeting options.
-
#next_page_token ⇒ String
A token identifying the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAdvertiserAssignedTargetingOptionsResponse
constructor
A new instance of ListAdvertiserAssignedTargetingOptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAdvertiserAssignedTargetingOptionsResponse
Returns a new instance of ListAdvertiserAssignedTargetingOptionsResponse.
5519 5520 5521 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5519 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assigned_targeting_options ⇒ Array<Google::Apis::DisplayvideoV1::AssignedTargetingOption>
The list of assigned targeting options. This list will be absent if empty.
Corresponds to the JSON property assignedTargetingOptions
5509 5510 5511 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5509 def @assigned_targeting_options end |
#next_page_token ⇒ String
A token identifying the next page of results. This value should be specified
as the pageToken in a subsequent ListAdvertiserAssignedTargetingOptionsRequest
to fetch the next page of results. This token will be absent if there are no
more assigned_targeting_options to return.
Corresponds to the JSON property nextPageToken
5517 5518 5519 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5517 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5524 5525 5526 5527 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5524 def update!(**args) @assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |