호스트 앱에 링크 미리보기 카드와 스마트 칩을 표시하는 카드 작업입니다. 자세한 내용은 스마트 칩을 사용한 링크 미리보기를 참고하세요.
const decoratedText = CardService.newDecoratedText().setTopLabel('Hello').setText('Hi!'); const cardSection = CardService.newCardSection().addWidget(decoratedText); const card = CardService.newCardBuilder().addSection(cardSection).build(); const linkPreview = CardService.newLinkPreview().setPreviewCard(card).setTitle( 'Smart chip title');
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
print | String | 이 객체의 JSON 표현을 출력합니다. |
set | Link | 미리보기 카드 위의 링크 미리보기에 표시되는 제목을 설정합니다. |
set | Link | 서드 파티 또는 Google 이외의 서비스의 링크에 관한 정보를 표시하는 카드를 설정합니다. |
set | Link | 링크 미리보기의 스마트 칩에 표시되는 제목을 설정합니다. |
자세한 문서
print Json()
이 객체의 JSON 표현을 출력합니다. 디버깅 전용입니다.
리턴
String
set Link Preview Title(title)
미리보기 카드 위의 링크 미리보기에 표시되는 제목을 설정합니다. 설정하지 않으면 링크 미리보기에 Preview
의 헤더가 표시됩니다.
const linkPreview = CardService.newLinkPreview().setLinkPreviewTitle('Link preview title');
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 링크 미리보기의 제목입니다. |
리턴
Link
: 연결을 위한 객체입니다.
set Preview Card(previewCard)
서드 파티 또는 Google 이외의 서비스의 링크에 관한 정보를 표시하는 카드를 설정합니다.
const decoratedText = CardService.newDecoratedText().setTopLabel('Hello').setText('Hi!'); const cardSection = CardService.newCardSection().addWidget(decoratedText); const card = CardService.newCardBuilder().addSection(cardSection).build(); const linkPreview = CardService.newLinkPreview().setPreviewCard(card).setTitle( 'Smart chip title');
매개변수
이름 | 유형 | 설명 |
---|---|---|
preview | Card | 미리보기 카드 |
리턴
Link
: 연결을 위한 객체입니다.
set Title(title)
링크 미리보기의 스마트 칩에 표시되는 제목을 설정합니다. 설정하지 않으면 스마트 칩이 Preview
의 헤더를 표시합니다.
const linkPreview = CardService.newLinkPreview().setTitle('Smart chip title');
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 스마트 칩의 제목입니다. |
리턴
Link
: 연결을 위한 객체입니다.