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
— चेन बनाने के लिए यह ऑब्जेक्ट.