Class: Google::Apis::AnalyticsdataV1beta::DimensionMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsdata_v1beta/classes.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb

Overview

Explains a dimension.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DimensionMetadata

Returns a new instance of DimensionMetadata.



754
755
756
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 754

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_nameString

This dimension's name. Useable in Dimension's name. For example, eventName. Corresponds to the JSON property apiName

Returns:

  • (String)


721
722
723
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 721

def api_name
  @api_name
end

#categoryString

The display name of the category that this dimension belongs to. Similar dimensions and metrics are categorized together. Corresponds to the JSON property category

Returns:

  • (String)


727
728
729
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 727

def category
  @category
end

#custom_definitionBoolean Also known as: custom_definition?

True if the dimension is a custom dimension for this property. Corresponds to the JSON property customDefinition

Returns:

  • (Boolean)


732
733
734
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 732

def custom_definition
  @custom_definition
end

#deprecated_api_namesArray<String>

Still usable but deprecated names for this dimension. If populated, this dimension is available by either apiName or one of deprecatedApiNames for a period of time. After the deprecation period, the dimension will be available only by apiName. Corresponds to the JSON property deprecatedApiNames

Returns:

  • (Array<String>)


741
742
743
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 741

def deprecated_api_names
  @deprecated_api_names
end

#descriptionString

Description of how this dimension is used and calculated. Corresponds to the JSON property description

Returns:

  • (String)


746
747
748
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 746

def description
  @description
end

#ui_nameString

This dimension's name within the Google Analytics user interface. For example, Event name. Corresponds to the JSON property uiName

Returns:

  • (String)


752
753
754
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 752

def ui_name
  @ui_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



759
760
761
762
763
764
765
766
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 759

def update!(**args)
  @api_name = args[:api_name] if args.key?(:api_name)
  @category = args[:category] if args.key?(:category)
  @custom_definition = args[:custom_definition] if args.key?(:custom_definition)
  @deprecated_api_names = args[:deprecated_api_names] if args.key?(:deprecated_api_names)
  @description = args[:description] if args.key?(:description)
  @ui_name = args[:ui_name] if args.key?(:ui_name)
end