Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e45b62f

Browse files
committedMar 4, 2025
feat(fcm): update the api
#### fcm:v1 The following keys were added: - schemas.AndroidConfig.properties.bandwidthConstrainedOk.type (Total Keys: 1)
1 parent 0a0b759 commit e45b62f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎docs/dyn/fcm_v1.projects.messages.html

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ <h3>Method Details</h3>
9898
{ # Request to send a message to specified target.
9999
&quot;message&quot;: { # Message to send by Firebase Cloud Messaging Service. # Required. Message to send.
100100
&quot;android&quot;: { # Android specific options for messages sent through [FCM connection server](https://goo.gl/4GLdUl). # Input only. Android specific options for messages sent through [FCM connection server](https://goo.gl/4GLdUl).
101+
&quot;bandwidthConstrainedOk&quot;: True or False, # Optional. If set to true, messages will be allowed to be delivered to the app while the device is in bandwidth constrained mode.
101102
&quot;collapseKey&quot;: &quot;A String&quot;, # An identifier of a group of messages that can be collapsed, so that only the last message gets sent when delivery can be resumed. A maximum of 4 different collapse keys is allowed at any given time.
102103
&quot;data&quot;: { # Arbitrary key/value payload. If present, it will override google.firebase.fcm.v1.Message.data.
103104
&quot;a_key&quot;: &quot;A String&quot;,
@@ -211,6 +212,7 @@ <h3>Method Details</h3>
211212

212213
{ # Message to send by Firebase Cloud Messaging Service.
213214
&quot;android&quot;: { # Android specific options for messages sent through [FCM connection server](https://goo.gl/4GLdUl). # Input only. Android specific options for messages sent through [FCM connection server](https://goo.gl/4GLdUl).
215+
&quot;bandwidthConstrainedOk&quot;: True or False, # Optional. If set to true, messages will be allowed to be delivered to the app while the device is in bandwidth constrained mode.
214216
&quot;collapseKey&quot;: &quot;A String&quot;, # An identifier of a group of messages that can be collapsed, so that only the last message gets sent when delivery can be resumed. A maximum of 4 different collapse keys is allowed at any given time.
215217
&quot;data&quot;: { # Arbitrary key/value payload. If present, it will override google.firebase.fcm.v1.Message.data.
216218
&quot;a_key&quot;: &quot;A String&quot;,

‎googleapiclient/discovery_cache/documents/fcm.v1.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,17 @@
146146
}
147147
}
148148
},
149-
"revision": "20241112",
149+
"revision": "20250219",
150150
"rootUrl": "https://fcm.googleapis.com/",
151151
"schemas": {
152152
"AndroidConfig": {
153153
"description": "Android specific options for messages sent through [FCM connection server](https://goo.gl/4GLdUl).",
154154
"id": "AndroidConfig",
155155
"properties": {
156+
"bandwidthConstrainedOk": {
157+
"description": "Optional. If set to true, messages will be allowed to be delivered to the app while the device is in bandwidth constrained mode.",
158+
"type": "boolean"
159+
},
156160
"collapseKey": {
157161
"description": "An identifier of a group of messages that can be collapsed, so that only the last message gets sent when delivery can be resumed. A maximum of 4 different collapse keys is allowed at any given time.",
158162
"type": "string"

0 commit comments

Comments
 (0)
Please sign in to comment.