[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 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. |"]]