Class: Google::Apis::AnalyticsdataV1alpha::Metadata
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsdataV1alpha::Metadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsdata_v1alpha/classes.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb
Overview
The dimensions and metrics currently accepted in reporting methods.
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<Google::Apis::AnalyticsdataV1alpha::DimensionMetadata>
The dimension descriptions.
-
#metrics ⇒ Array<Google::Apis::AnalyticsdataV1alpha::MetricMetadata>
The metric descriptions.
-
#name ⇒ String
Resource name of this metadata.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Metadata
constructor
A new instance of Metadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Metadata
Returns a new instance of Metadata.
744 745 746 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 744 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ Array<Google::Apis::AnalyticsdataV1alpha::DimensionMetadata>
The dimension descriptions.
Corresponds to the JSON property dimensions
732 733 734 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 732 def dimensions @dimensions end |
#metrics ⇒ Array<Google::Apis::AnalyticsdataV1alpha::MetricMetadata>
The metric descriptions.
Corresponds to the JSON property metrics
737 738 739 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 737 def metrics @metrics end |
#name ⇒ String
Resource name of this metadata.
Corresponds to the JSON property name
742 743 744 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 742 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
749 750 751 752 753 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 749 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @metrics = args[:metrics] if args.key?(:metrics) @name = args[:name] if args.key?(:name) end |