Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListCustomMetricsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListCustomMetricsResponse
- 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 ListCustomMetrics RPC.
Instance Attribute Summary collapse
-
#custom_metrics ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaCustomMetric>
List of CustomMetrics.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListCustomMetricsResponse
constructor
A new instance of GoogleAnalyticsAdminV1betaListCustomMetricsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListCustomMetricsResponse
Returns a new instance of GoogleAnalyticsAdminV1betaListCustomMetricsResponse.
1669 1670 1671 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1669 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_metrics ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaCustomMetric>
List of CustomMetrics.
Corresponds to the JSON property customMetrics
1661 1662 1663 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1661 def custom_metrics @custom_metrics 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
1667 1668 1669 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1667 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1674 1675 1676 1677 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1674 def update!(**args) @custom_metrics = args[:custom_metrics] if args.key?(:custom_metrics) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |