WaitlistEntryFailure की परिभाषा
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
वेटलिस्ट एंट्री बनाते समय, WaitlistEntry फ़ेल हो सकती है.
// Status data that conveys why creating a waitlist entry fails.// If there is a business logic error that is not captured here, please// reach out to the Reserve with Google team to add it to this list. Other// errors should be returned using standard HTTP error codes.messageWaitlistBusinessLogicFailure{optionfeatures.(pb.java).nest_in_file_class=YES;enumCause{// Default value: Don't use; amounts to an "unknown error"// Unexpected errors must be returned using standard HTTP error codes.CAUSE_UNSPECIFIED=0;// The user has already booked a waitlist entry with the partner.EXISTING_WAITLIST_ENTRY=1;// The requested party size is below the merchant’s minimum.BELOW_MIN_PARTY_SIZE=2;// The requested party size is above the merchant’s maximum.ABOVE_MAX_PARTY_SIZE=3;// The requested merchant is currently closed.MERCHANT_CLOSED=4;// There is currently no wait and the user should walk in without joining// the waitlist.NO_WAIT=5;// The waitlist is at capacity and new users are not being accepted at this// time.WAITLIST_FULL=6;// The country of the phone number is not supported.PHONE_NUMBER_COUNTRY_UNSUPPORTED=7;// The waitlist is closed and not accepting new users. This is expected when// the waitlist enters state CLOSED_OTHER after the user has already seen a// wait estimate.WAITLIST_CLOSED=8;}// Required. The reason why the booking failed.Causecause=1;// This optional field is used for the partner to include additional// information for debugging purposes only.stringdescription=2;}
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2026-03-26 (UTC) को अपडेट किया गया."],[],["Waitlist entry creation can fail due to various reasons, indicated by `WaitlistBusinessLogicFailure`. These causes include: an existing entry, party size issues (below minimum or above maximum), the merchant being closed, no current wait, a full waitlist, an unsupported phone number country, or the waitlist being closed. Each failure has an enumerated cause, and optional debugging information can be added to a description. Standard HTTP errors should be used for other issues.\n"]]