Enum GuestStatus
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
حالة الضيف
فهرس يمثّل الحالات التي يمكن أن يكون فيها ضيف في حدث
لاستدعاء قائمة أرقام صحيحة، عليك استدعاء الصف الرئيسي والاسم والخاصية. مثلاً:
CalendarApp.GuestStatus.INVITED
أماكن إقامة
الموقع | النوع | الوصف |
INVITED | Enum | تمّت دعوة الضيف، ولكنّه لم يُشير إلى ما إذا كان سيحضر. |
MAYBE | Enum | أشار الضيف إلى أنّه قد يحضر. |
NO | Enum | أشار الضيف إلى أنّه لن يحضر. |
OWNER | Enum | يكون المدعو هو مالك الحدث. |
YES | Enum | أشار الضيف إلى أنّه سيحضر. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003e\u003ccode\u003eGuestStatus\u003c/code\u003e is an enum defining the possible attendance statuses for guests of an event in Google Calendar.\u003c/p\u003e\n"],["\u003cp\u003eThe enum includes statuses like \u003ccode\u003eINVITED\u003c/code\u003e, \u003ccode\u003eMAYBE\u003c/code\u003e, \u003ccode\u003eNO\u003c/code\u003e, \u003ccode\u003eOWNER\u003c/code\u003e, and \u003ccode\u003eYES\u003c/code\u003e, indicating the guest's response to the event invitation.\u003c/p\u003e\n"],["\u003cp\u003eTo use a specific guest status, call it using the format \u003ccode\u003eCalendarApp.GuestStatus.STATUS\u003c/code\u003e, replacing \u003ccode\u003eSTATUS\u003c/code\u003e with the desired status like \u003ccode\u003eINVITED\u003c/code\u003e or \u003ccode\u003eYES\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Enum GuestStatus\n\nGuestStatus\n\nAn enum representing the statuses a guest can have for an event.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nCalendarApp.GuestStatus.INVITED`. \n\n### Properties\n\n| Property | Type | Description |\n|-----------|--------|-------------------------------------------------------------------------------|\n| `INVITED` | `Enum` | The guest has been invited, but has not indicated whether they are attending. |\n| `MAYBE` | `Enum` | The guest has indicated they might attend. |\n| `NO` | `Enum` | The guest has indicated they are not attending. |\n| `OWNER` | `Enum` | The guest is the owner of the event. |\n| `YES` | `Enum` | The guest has indicated they are attending. |"]]