Class: Google::Apis::FcmV1::Notification
- Inherits:
-
Object
- Object
- Google::Apis::FcmV1::Notification
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/fcm_v1/classes.rb,
lib/google/apis/fcm_v1/representations.rb,
lib/google/apis/fcm_v1/representations.rb
Overview
Basic notification template to use across all platforms.
Instance Attribute Summary collapse
-
#body ⇒ String
The notification's body text.
-
#image ⇒ String
Contains the URL of an image that is going to be downloaded on the device and displayed in a notification.
-
#title ⇒ String
The notification's title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Notification
constructor
A new instance of Notification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Notification
Returns a new instance of Notification.
745 746 747 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 745 def initialize(**args) update!(**args) end |
Instance Attribute Details
#body ⇒ String
The notification's body text.
Corresponds to the JSON property body
728 729 730 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 728 def body @body end |
#image ⇒ String
Contains the URL of an image that is going to be downloaded on the device and
displayed in a notification. JPEG, PNG, BMP have full support across platforms.
Animated GIF and video only work on iOS. WebP and HEIF have varying levels of
support across platforms and platform versions. Android has 1MB image size
limit. Quota usage and implications/costs for hosting image on Firebase
Storage: https://firebase.google.com/pricing
Corresponds to the JSON property image
738 739 740 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 738 def image @image end |
#title ⇒ String
The notification's title.
Corresponds to the JSON property title
743 744 745 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 743 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
750 751 752 753 754 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 750 def update!(**args) @body = args[:body] if args.key?(:body) @image = args[:image] if args.key?(:image) @title = args[:title] if args.key?(:title) end |