class Firebase::Admin::Messaging::FCMOptions

Represents options for features provided by the FCM SDK.

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 {FCMOptions}.

@param [String, nil] analytics_label

The label associated with the message's analytics data (optional).
# File lib/firebase/admin/messaging/fcm_options.rb, line 13
def initialize(analytics_label: nil)
  self.analytics_label = analytics_label
end