Enum GuestStatus
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
GośćStan
Wyliczenie reprezentujące stany, jakie może mieć gość na wydarzeniu.
Aby wywołać enum, wywołaj jego klasę nadrzędną, nazwę i właściwość. Na przykład:
CalendarApp.GuestStatus.INVITED
.
Właściwości
Właściwość | Typ | Opis |
INVITED | Enum | Gość został zaproszony, ale nie podał, czy weźmie udział w spotkaniu. |
MAYBE | Enum | Gość wskazał, że może wziąć udział w spotkaniu. |
NO | Enum | Gość poinformował, że nie weźmie udziału w spotkaniu. |
OWNER | Enum | Gość jest właścicielem wydarzenia. |
YES | Enum | Gość potwierdził udział. |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-26 UTC.
[null,null,["Ostatnia aktualizacja: 2025-07-26 UTC."],[[["\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. |"]]