Class: Google::Apis::AnalyticsV3::Webproperty::ChildLink

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

Overview

Child link for this web property. Points to the list of views (profiles) for this web property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChildLink

Returns a new instance of ChildLink.



5740
5741
5742
# File 'generated/google/apis/analytics_v3/classes.rb', line 5740

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

Instance Attribute Details

#hrefString

Link to the list of views (profiles) for this web property. Corresponds to the JSON property href

Returns:

  • (String)


5733
5734
5735
# File 'generated/google/apis/analytics_v3/classes.rb', line 5733

def href
  @href
end

#typeString

Type of the parent link. Its value is "analytics#profiles". Corresponds to the JSON property type

Returns:

  • (String)


5738
5739
5740
# File 'generated/google/apis/analytics_v3/classes.rb', line 5738

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5745
5746
5747
5748
# File 'generated/google/apis/analytics_v3/classes.rb', line 5745

def update!(**args)
  @href = args[:href] if args.key?(:href)
  @type = args[:type] if args.key?(:type)
end