Bir Chat uygulamasının yanıtının nasıl yayınlanacağını yapılandırmak için kullanabileceği parametreleri temsil eden sınıf.
Yalnızca Google Chat uygulamaları için kullanılabilir. Google Workspace eklentileri için kullanılamaz.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .build(); const dialog = CardService.newDialog().setBody(card); const dialogAction = CardService.newDialogAction().setDialog(dialog); const chatActionResponse = CardService.newChatActionResponse() .setResponseType(CardService.Type.DIALOG) .setDialogAction(dialogAction);
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
set | Chat | İletişim işlemini, iletişimle ilgili bir etkinliğe ayarlar. |
set | Chat | Chat uygulaması yanıtının türü. |
set | Chat | Bir widget için otomatik tamamlama seçenekleri sunmak üzere kullanılan güncellenmiş widget'ı ayarlar. |
set | Chat | Kullanıcıların kimlik doğrulaması veya yapılandırma yapması için gereken URL. |
Ayrıntılı dokümanlar
set Dialog Action(dialogAction)
İletişim işlemini, iletişimle ilgili bir etkinliğe ayarlar.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .build(); const dialog = CardService.newDialog().setBody(card); const dialogAction = CardService.newDialogAction().setDialog(dialog); const chatActionResponse = CardService.newChatActionResponse() .setResponseType(CardService.Type.DIALOG) .setDialogAction(dialogAction);
Parametreler
Ad | Tür | Açıklama |
---|---|---|
dialog | Dialog | Ayarlanacak iletişim kutusu işlemi. |
Return
Chat
: Zincirleme için bu nesne.
set Response Type(responseType)
Chat uygulaması yanıtının türü.
const chatActionResponse = CardService.newChatActionResponse().setResponseType( CardService.Type.DIALOG, );
Parametreler
Ad | Tür | Açıklama |
---|---|---|
response | Response | Yanıt türü. |
Return
Chat
: Zincirleme için bu nesne.
set Updated Widget(updatedWidget)
Bir widget için otomatik tamamlama seçenekleri sunmak üzere kullanılan güncellenmiş widget'ı ayarlar.
const updatedWidget = CardService.newUpdatedWidget() .addItem( 'Contact 1', 'contact-1', false, 'https://www.gstatic.com/images/branding/product/2x/contacts_48dp.png', 'Contact one description', ) .addItem( 'Contact 2', 'contact-2', false, 'https://www.gstatic.com/images/branding/product/2x/contacts_48dp.png', 'Contact two description', ) .addItem( 'Contact 3', 'contact-3', false, 'https://www.gstatic.com/images/branding/product/2x/contacts_48dp.png', 'Contact three description', ) .addItem( 'Contact 4', 'contact-4', false, 'https://www.gstatic.com/images/branding/product/2x/contacts_48dp.png', 'Contact four description', ) .addItem( 'Contact 5', 'contact-5', false, 'https://www.gstatic.com/images/branding/product/2x/contacts_48dp.png', 'Contact five description', ); const actionResponse = CardService.newChatActionResponse() .setUpdatedWidget(updatedWidget) .setResponseType(CardService.ResponseType.UPDATE_WIDGET);Yalnızca Google Chat uygulamaları için kullanılabilir. Google Workspace eklentileri için kullanılamaz.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
updated | Updated | Ayarlanacak güncellenmiş widget. |
Return
Chat
: Zincirleme için bu nesne.
set Url(url)
Kullanıcıların kimlik doğrulaması veya yapılandırma yapması için gereken URL. Yalnızca REQUEST_CONFIG
yanıt türü için.
const chatActionResponse = CardService.newChatActionResponse() .setResponseType(CardService.Type.REQUEST_CONFIG) .setUrl('https://www.google.com');
Parametreler
Ad | Tür | Açıklama |
---|---|---|
url | String | Gönderilecek URL. |
Return
Chat
: Zincirleme için bu nesne.