class Google::Apis::AnalyticsV3::CustomDimension::ParentLink

Parent link for the custom dimension. Points to the property to which the custom dimension belongs.

Attributes

href[RW]

Link to the property to which the custom dimension belongs. Corresponds to the JSON property `href` @return [String]

type[RW]

Type of the parent link. Set to “analytics#webproperty”. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 960
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 965
def update!(**args)
  @href = args[:href] if args.key?(:href)
  @type = args[:type] if args.key?(:type)
end