class Firebase::Admin::Messaging::AndroidFCMOptions
Represents options for features provided by the FCM SDK for Android.
Attributes
analytics_label[RW]
@return [String, nil] Label associated with the message's analytics data.
Public Class Methods
new(analytics_label: nil)
click to toggle source
Initializes an {AndroidFCMOptions}.
@param [String, nil] analytics_label
The label associated with the message's analytics data (optional).
# File lib/firebase/admin/messaging/android_fcm_options.rb, line 13 def initialize(analytics_label: nil) self.analytics_label = analytics_label end