Class: Google::Apis::FirebasedynamiclinksV1::DynamicLinkEventStat
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebasedynamiclinksV1::DynamicLinkEventStat
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/firebasedynamiclinks_v1/classes.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb 
Overview
Dynamic Link event stat.
Instance Attribute Summary collapse
- 
  
    
      #count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of times this event occurred.
 - 
  
    
      #event  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Link event.
 - 
  
    
      #platform  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Requested platform.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DynamicLinkEventStat 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DynamicLinkEventStat.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DynamicLinkEventStat
Returns a new instance of DynamicLinkEventStat
      328 329 330  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 328 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#count ⇒ Fixnum
The number of times this event occurred.
Corresponds to the JSON property count
      316 317 318  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 316 def count @count end  | 
  
#event ⇒ String
Link event.
Corresponds to the JSON property event
      321 322 323  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 321 def event @event end  | 
  
#platform ⇒ String
Requested platform.
Corresponds to the JSON property platform
      326 327 328  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 326 def platform @platform end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      333 334 335 336 337  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 333 def update!(**args) @count = args[:count] if args.key?(:count) @event = args[:event] if args.key?(:event) @platform = args[:platform] if args.key?(:platform) end  |