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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ChildLink

Returns a new instance of ChildLink



5828
5829
5830
# File 'generated/google/apis/analytics_v3/classes.rb', line 5828

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)


5821
5822
5823
# File 'generated/google/apis/analytics_v3/classes.rb', line 5821

def href
  @href
end

#typeString

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

Returns:

  • (String)


5826
5827
5828
# File 'generated/google/apis/analytics_v3/classes.rb', line 5826

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5833
5834
5835
5836
# File 'generated/google/apis/analytics_v3/classes.rb', line 5833

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