class Google::Apis::DatastreamV1::ListStreamObjectsResponse
Response containing the objects for a stream.
Attributes
next_page_token[RW]
A token, which can be sent as ‘page_token` to retrieve the next page. Corresponds to the JSON property `nextPageToken` @return [String]
stream_objects[RW]
List of stream objects. Corresponds to the JSON property ‘streamObjects` @return [Array<Google::Apis::DatastreamV1::StreamObject>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 712 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datastream_v1/classes.rb, line 717 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @stream_objects = args[:stream_objects] if args.key?(:stream_objects) end