Enum GuestStatus
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Stato ospite
Un enum che rappresenta gli stati che un ospite può avere per un evento.
Per chiamare un enum, devi chiamare la relativa classe, il nome e la proprietà di base. Ad esempio,
CalendarApp.GuestStatus.INVITED
.
Proprietà
Proprietà | Tipo | Descrizione |
INVITED | Enum | L'invitato è stato invitato, ma non ha indicato se parteciperà. |
MAYBE | Enum | L'invitato ha indicato che potrebbe partecipare. |
NO | Enum | L'ospite ha indicato che non parteciperà. |
OWNER | Enum | L'invitato è il proprietario dell'evento. |
YES | Enum | L'invitato ha indicato che parteciperà. |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 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. |"]]