Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListDataStreamsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListDataStreamsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb
Overview
Response message for ListDataStreams RPC.
Instance Attribute Summary collapse
-
#data_streams ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaDataStream>
List of DataStreams.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListDataStreamsResponse
constructor
A new instance of GoogleAnalyticsAdminV1betaListDataStreamsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListDataStreamsResponse
Returns a new instance of GoogleAnalyticsAdminV1betaListDataStreamsResponse.
1695 1696 1697 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_streams ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaDataStream>
List of DataStreams.
Corresponds to the JSON property dataStreams
1687 1688 1689 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1687 def data_streams @data_streams end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1693 1694 1695 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1693 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1700 1701 1702 1703 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1700 def update!(**args) @data_streams = args[:data_streams] if args.key?(:data_streams) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |