Builder ל-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 . |
מסמכי תיעוד מפורטים
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
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
פרמטרים
שם | סוג | תיאור |
---|---|---|
id | String | הטקסט לשימוש. |
חזרה
CardWithId
– האובייקט הזה, לשרשור.