class Google::Apis::FirebasedynamiclinksV1::DynamicLinkEventStat
Dynamic Link event stat.
Attributes
count[RW]
The number of times this event occurred. Corresponds to the JSON property `count` @return [Fixnum]
event[RW]
Link event. Corresponds to the JSON property `event` @return [String]
platform[RW]
Requested platform. Corresponds to the JSON property `platform` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 335 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 340 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