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_tokento 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.
1531 1532 1533 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1531 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
1523 1524 1525 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1523 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
1529 1530 1531 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1529 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1536 1537 1538 1539 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1536 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 |