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.



5476
5477
5478
# File 'generated/google/apis/analytics_v3/classes.rb', line 5476

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)


5469
5470
5471
# File 'generated/google/apis/analytics_v3/classes.rb', line 5469

def href
  @href
end

#typeString

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

Returns:

  • (String)


5474
5475
5476
# File 'generated/google/apis/analytics_v3/classes.rb', line 5474

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5481
5482
5483
5484
# File 'generated/google/apis/analytics_v3/classes.rb', line 5481

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