class Google::Apis::FcmV1::ApnsFcmOptions

Options for features provided by the FCM SDK for iOS.

Attributes

analytics_label[RW]

Label associated with the message's analytics data. Corresponds to the JSON property `analyticsLabel` @return [String]

image[RW]

Contains the URL of an image that is going to be displayed in a notification. If present, it will override google.firebase.fcm.v1.Notification.image. Corresponds to the JSON property `image` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/fcm_v1/classes.rb, line 420
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/fcm_v1/classes.rb, line 425
def update!(**args)
  @analytics_label = args[:analytics_label] if args.key?(:analytics_label)
  @image = args[:image] if args.key?(:image)
end