AI-generated Key Takeaways
-
The
ActionStatus
class represents the status for a request to invoke or submit a dialog in Google Chat apps. -
It is only available for Google Chat apps and not for Google Workspace add-ons.
-
Key methods include
setStatusCode()
to set the status code andsetUserFacingMessage()
to set a user-facing message about the request status.
A class that represents the status for a request to either invoke or submit a dialog.
Only available for Google Chat apps. Not available for Google Workspace add-ons.
const actionStatus = CardService.newActionStatus() .setStatusCode(CardService.Status.OK) .setUserFacingMessage('Success');
Methods
Method | Return type | Brief description |
---|---|---|
set | Action | Represents the status for a request to either open or submit a dialog. |
set | Action | The message to send users about the status of their request. |
Detailed documentation
setStatusCode(statusCode)
Represents the status for a request to either open or submit a dialog.
const actionStatus = CardService.newActionStatus().setStatusCode( CardService.Status.OK, );
Parameters
Name | Type | Description |
---|---|---|
status | Status | The status code. |
Return
Action
— This object, for chaining.
setUserFacingMessage(message)
The message to send users about the status of their request. If unset, a generic message based
on the Status
is sent.
const actionStatus = CardService.newActionStatus().setUserFacingMessage('Success');
Parameters
Name | Type | Description |
---|---|---|
message | String | The message to send. |
Return
Action
— This object, for chaining.