使用分組 ID
根據預設,將多張票證新增至單一 「新增至 Google 錢包」連結並不會將票證中的票證 使用者的 Google 錢包應用程式。但若要將票證分組 確認它們的分組 ID 都相同。分組的票證會一起顯示 。如果選取一組票證,每張票證會 顯示在輪轉介面中
票證可以分組:
如要將票證新增至群組,groupingInfo.groupingId
就必須設定票證物件具有相同相同的所有票證物件
系統會自動將 groupingId
的值分組,即使結果為
系統會分別新增
以下範例顯示一張會員卡和優惠歸入同一個群組。 吸引使用者在下次消費時使用這兩項功能。
loyaltyObject = { "classId": "ISSUER_ID.GIFT_CARD_CLASS_SUFFIX", "id": "ISSUER_ID.GIFT_CARD_OBJECT_SUFFIX", "state": "ACTIVE", "groupingInfo": { # Note the same groupingId value "groupingId": "combinedGiftCardAndOfferId", "sortIndex": 1 }, "barcode": { "type": "QR_CODE", "value": "QR code" }, "accountId": "Account id", "accountName": "Account name", "loyaltyPoints": { "label": "Points", "balance": { "int": 800 } } } offerObject = { "classId": "ISSUER_ID.OFFER_CLASS_SUFFIX", "id": "ISSUER_ID.OFFER_OBJECT_SUFFIX", "state": "ACTIVE", "groupingInfo": { # Note the same groupingId value "groupingId": "combinedGiftCardAndOfferId", "sortIndex": 2 }, "barcode": { "type": "QR_CODE", "value": "QR code", }, }