Class: Google::Apis::FcmV1::SendMessageRequest
- Inherits:
-
Object
- Object
- Google::Apis::FcmV1::SendMessageRequest
- 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
Request to send a message to specified target.
Instance Attribute Summary collapse
-
#message ⇒ Google::Apis::FcmV1::Message
Message to send by Firebase Cloud Messaging Service.
-
#validate_only ⇒ Boolean
(also: #validate_only?)
Flag for testing the request without actually delivering the message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SendMessageRequest
constructor
A new instance of SendMessageRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SendMessageRequest
Returns a new instance of SendMessageRequest.
762 763 764 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 762 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ Google::Apis::FcmV1::Message
Message to send by Firebase Cloud Messaging Service.
Corresponds to the JSON property message
754 755 756 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 754 def @message end |
#validate_only ⇒ Boolean Also known as: validate_only?
Flag for testing the request without actually delivering the message.
Corresponds to the JSON property validateOnly
759 760 761 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 759 def validate_only @validate_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
767 768 769 770 |
# File 'lib/google/apis/fcm_v1/classes.rb', line 767 def update!(**args) @message = args[:message] if args.key?(:message) @validate_only = args[:validate_only] if args.key?(:validate_only) end |