Class: Google::Apis::AnalyticsV3::Webproperty::ChildLink
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AnalyticsV3::Webproperty::ChildLink
 
- 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
- 
  
    
      #href  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Link to the list of views (profiles) for this web property. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of the parent link. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChildLink 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ChildLink. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChildLink
Returns a new instance of ChildLink
| 5673 5674 5675 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5673 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#href ⇒ String
Link to the list of views (profiles) for this web property.
Corresponds to the JSON property href
| 5666 5667 5668 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5666 def href @href end | 
#type ⇒ String
Type of the parent link. Its value is "analytics#profiles".
Corresponds to the JSON property type
| 5671 5672 5673 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5671 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5678 5679 5680 5681 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5678 def update!(**args) @href = args[:href] if args.key?(:href) @type = args[:type] if args.key?(:type) end |