खाने-पीने के लिए अलग-अलग सेक्शन जोड़ें

आम तौर पर, रेस्टोरेंट में अलग-अलग तरह के बैठने की जगहें होती हैं. जैसे, बार या पाटिओ. साथ ही, अलग-अलग तरह के अनुभव भी मिलते हैं. जैसे, पांच कोर्स वाला टेस्टिंग मेन्यू या वाइन टेस्टिंग. ऐक्शन सेंटर में इस अंतर को दिखाया जा सकता है. साथ ही, उपयोगकर्ता को टेबल बुक करने के लिए जगह तय करने की सुविधा मिलती है.

कमरे के नामों के साथ उपलब्धता की स्लॉट

इमेज 1: बैठने की जगहों के सेक्शन वाले रेस्टोरेंट के लिए, स्लॉट चुनने का उदाहरण

इन्वेंट्री को अलग-अलग कैटगरी में बांटने के लिए, उपलब्धता स्लॉट के resources मैसेज में room_id, room_name, और फ़ील्ड सेट करें. रूम का ब्यौरा शामिल करने के लिए, संसाधनों के मैसेज में room_description फ़ील्ड का इस्तेमाल करें.

// A resource is used to disambiguate availability slots from one another when
// different staff, room or party_size values are part of the service.
// Multiple slots for the same service and time interval can co-exist when they
// have different resources.
message Resources {
  // One of staff_id, room_id, or party_size must be set.

  // Optional ID for a staff member providing the service. This field identifies
  // the staff member across all merchants, services, and availability records.
  // It also needs to be stable over time to allow correlation with past
  // bookings. (optional but required if staff_name is present)
  string staff_id = 1;

  // Optional name of a staff member providing the service. This field will be
  // displayed to users making a booking, and should be human-readable, as
  // opposed to an opaque identifier. (optional but required if staff_id is
  // present)
  string staff_name = 2;

  // An optional ID for the room the service is located in. This field
  // identifies the room across all merchants, services, and availability
  // records. It also needs to be stable over time to allow correlation with
  // past bookings. (optional but required if room_name is present)
  string room_id = 3;

  // An optional name for the room the service is located in or experience of
  // of the service. This field will be displayed to users making a booking,
  // and should be human readable, as opposed to an opaque identifier.
  // A room name should only be used for seating areas or prepaid experiences.
  // Examples of room names include "Bar", "Patio", "Dining Room". Examples of
  // dining experiences using room names include "Five-Course Tasting Menu",
  // "Chef Omakase". It is strongly recommended that the default seating area
  // does not have a room associated with it.
  string room_name = 4;

  // Applicable only for Dining: The party size that can be accommodated
  // during this time slot. A restaurant can be associated with multiple Slots
  // for the same time, each specifying a different party_size, if for instance
  // 2, 3, or 4 people can be seated with a reservation. (optional)
  int32 party_size = 5;

  // Localized room description with a limit of 500 characters. If set,
  // a default value must be provided, it is preferred to use the common
  // languages for the merchant's locale.
  Text room_description = 7;
}

यह जानकारी, स्लॉट की परिभाषा का एक अहम हिस्सा है. इसे फ़ीड के साथ-साथ, सभी बुकिंग और रीयल-टाइम अपडेट ऑपरेशन में शामिल करना होगा. room_id और room_name के उदाहरण, डाइनिंग, वर्टिकल के हिसाब से फ़ीड के उदाहरण में देखे जा सकते हैं.

रूम के नाम का इस्तेमाल करके, उपलब्धता के स्लॉट तय करना

अगर आपने बुकिंग के लिए पेमेंट का रीडायरेक्ट लागू किया है या लागू करने की प्रोसेस जारी है, तो प्री-पेड डाइनिंग अनुभव देने के लिए, room_name और room_descriptions का इस्तेमाल किया जा सकता है. नीचे दिए गए स्क्रीनशॉट में बताया गया है कि वेब पर यह सुविधा कैसे दिखती है.

इमेज 1: ऐसे रेस्टोरेंट के लिए स्लॉट चुनने का उदाहरण जिसमें बैठने की जगहों के सेक्शन हैं. साथ ही, कमरों के ब्यौरे भी दिए गए हैं

रूम का सैंपल

{
  "availability": [{
    "merchant_id": "dining-A",
    "service_id": "reservation",
    "start_sec": 1535853600,
    "duration_sec": 2700,
    "spots_total": 2,
    "spots_open": 2,
    "resources": {
      "room_id": "A-dining-room",
      "room_name": "Bar",
      "party_size": 2,
      }
    }
  }]
}

अनुभवों के नमूने

{
  "availability": [{
    "merchant_id": "dining-A",
    "service_id": "reservation",
    "start_sec": 1535853600,
    "duration_sec": 2700,
    "spots_total": 2,
    "spots_open": 2,
    "resources": {
      "room_id": "A-dining-room",
      "room_name": "Wine Tasting Menu Pair",
      "description": "This Wine Tasting Menu Pair showcases American cuisine rooted in the nostalgic flavors of the 20th century American experience. Each experience is hand-crafted, with a progression from small bites to more substantial plates.",
      "party_size": 2,
      }
    }
  }]
}