Class: Google::Apis::DisplayvideoV2::ListManualTriggersResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::ListManualTriggersResponse
- 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
Instance Attribute Summary collapse
-
#manual_triggers ⇒ Array<Google::Apis::DisplayvideoV2::ManualTrigger>
The list of manual triggers.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListManualTriggersResponse
constructor
A new instance of ListManualTriggersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListManualTriggersResponse
Returns a new instance of ListManualTriggersResponse.
8258 8259 8260 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8258 def initialize(**args) update!(**args) end |
Instance Attribute Details
#manual_triggers ⇒ Array<Google::Apis::DisplayvideoV2::ManualTrigger>
The list of manual triggers. This list will be absent if empty.
Corresponds to the JSON property manualTriggers
8249 8250 8251 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8249 def manual_triggers @manual_triggers end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in the
page_token field in the subsequent call to ListManualTriggers method to
retrieve the next page of results.
Corresponds to the JSON property nextPageToken
8256 8257 8258 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8256 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8263 8264 8265 8266 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8263 def update!(**args) @manual_triggers = args[:manual_triggers] if args.key?(:manual_triggers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |