अपॉइंटमेंट बुक करते समय, सबसे पहले लीज़ बनाना ज़रूरी होता है. पार्टनर
बैकएंड यह पुष्टि करता है कि जिस अपॉइंटमेंट स्लॉट का अनुरोध किया गया था वह अब भी मान्य है और अब भी
उपलब्ध हैं. अंदरूनी तौर पर, पार्टनर अनुरोध किए गए खातों के लिए, कुछ समय के लिए रोक लगाता है
स्लॉट, जो lease_expiration_time
को अपने-आप खत्म होने के लिए सेट अप किया गया है. कॉन्टेंट बनाने
बैकएंड के पास lease_expiration_time
में बदलाव करने की अनुमति है, उदाहरण के लिए अगर अनुरोध किया गया हो
लीज़ टाइम बहुत ज़्यादा है. बनाई गई लीज़, क्लाइंट को वापस कर दी जाती है.
// Temporary lease for an inventory slot message Lease { // ID of the lease. Ignored when creating a lease. string lease_id = 1; // ID of the merchant for the slot string merchant_id = 2; // ID of the merchant service string service_id = 3; // Start time of the appointment slot google.protobuf.Timestamp start_time = 4; // Duration of the appointment slot google.protobuf.Duration duration = 5; // Opaque tag that identifies the availability slot and matches the value // provided in the availability feed. string availability_tag = 8; // The set of resources that disambiguates the appointment slot, e.g. by // indicating the staff member and room selected by the user. Resources resources = 9; // Unique identifier for this lease, chosen by the client. Serves as an // idempotency token for [ext.maps.booking.partner.v0.CreateLease] requests. string client_reference = 6; // Expiration time of the lease google.protobuf.Timestamp lease_expiration_time = 7; } // Reference to a [ext.maps.booking.partner.v0.Lease] that has been created via // [ext.maps.booking.partner.v0.CreateLease] message LeaseReference { // Lease ID string lease_id = 1; }