@@ -72,7 +72,9 @@ class Messaging extends Service {
72
72
73
73
/// Update email
74
74
///
75
- /// Update an email message by its unique ID.
75
+ /// Update an email message by its unique ID. This endpoint only works on
76
+ /// messages that are in draft status. Messages that are already processing,
77
+ /// sent, or failed cannot be updated.
76
78
///
77
79
Future <models.Message > updateEmail (
78
80
{required String messageId,
@@ -173,7 +175,9 @@ class Messaging extends Service {
173
175
174
176
/// Update push notification
175
177
///
176
- /// Update a push notification by its unique ID.
178
+ /// Update a push notification by its unique ID. This endpoint only works on
179
+ /// messages that are in draft status. Messages that are already processing,
180
+ /// sent, or failed cannot be updated.
177
181
///
178
182
Future <models.Message > updatePush (
179
183
{required String messageId,
@@ -264,7 +268,9 @@ class Messaging extends Service {
264
268
265
269
/// Update SMS
266
270
///
267
- /// Update an email message by its unique ID.
271
+ /// Update an SMS message by its unique ID. This endpoint only works on
272
+ /// messages that are in draft status. Messages that are already processing,
273
+ /// sent, or failed cannot be updated.
268
274
///
269
275
Future <models.Message > updateSms (
270
276
{required String messageId,
0 commit comments