CardWithId
객체의 빌더입니다. 이 클래스는
메시지가 표시될 수 있습니다.
Google Chat 앱에서만 사용할 수 있습니다. Google Workspace 부가기능에는 사용할 수 없습니다.
const cardSection = CardService.newCardSection(); cardSection.addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget.')); const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId() .setCardId('card_id') .setCard(card);
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
setCard(card) | CardWithId | cardWithId 의 카드를 설정합니다. |
setCardId(id) | CardWithId | cardWithId 의 고유 카드 ID를 설정합니다. |
자세한 문서
setCard(card)
cardWithId
의 카드를 설정합니다.
const cardHeader = CardService.newCardHeader() .setTitle('Card Header Title') .setSubtitle('Card Header Subtitle'); const card = CardService.newCardBuilder() .setHeader(cardHeader) .build(); const cardWithId = CardService.newCardWithId() .setCard(card);
매개변수
이름 | 유형 | 설명 |
---|---|---|
card | Card | 사용할 Card 입니다. |
리턴
CardWithId
- 체이닝을 위한 객체입니다.
setCardId(id)
cardWithId
의 고유 카드 ID를 설정합니다.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 사용할 텍스트입니다. |
리턴
CardWithId
- 체이닝을 위한 객체입니다.