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
253 254 255 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
The number of times this event occurred.
Corresponds to the JSON property count
241 242 243 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 241 def count @count end |
#event ⇒ String
Link event.
Corresponds to the JSON property event
246 247 248 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 246 def event @event end |
#platform ⇒ String
Requested platform.
Corresponds to the JSON property platform
251 252 253 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 251 def platform @platform end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
258 259 260 261 262 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 258 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 |