콜백 함수 (예: 양식 응답 핸들러)에서 클라이언트에서 하나 이상의 작업을 실행하기 위해 반환될 수 있는 응답 객체입니다. 일부 작업 조합은 지원되지 않습니다.
// An action that opens a link const actionResponse = CardService.newActionResponseBuilder() .setOpenLink(CardService.newOpenLink().setUrl('https://www.google.com')) .build(); // An action that shows a notification. const notificationActionResponse = CardService.newActionResponseBuilder() .setNotification( CardService.newNotification().setText( 'Some info to display to user'), ) .build(); // An action that shows an additional card. It also sets a flag to indicate that // the original state data has changed. const cardBuilder = CardService.newCardBuilder(); // Build card ... const navigationActionResponse = CardService.newActionResponseBuilder() .setNavigation(CardService.newNavigation().pushCard( cardBuilder.build())) .setStateChanged(true) .build();
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
print | String | 이 객체의 JSON 표현을 출력합니다. |
자세한 문서
print Json()
이 객체의 JSON 표현을 출력합니다. 디버깅 전용입니다.
리턴
String