[[["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 2025-05-28 UTC."],[[["\u003cp\u003e\u003ccode\u003eIsPlaceOpenResponse\u003c/code\u003e is a struct that represents the response from the \u003ccode\u003eisPlaceOpen\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eIt includes a \u003ccode\u003estatus\u003c/code\u003e property indicating whether the place is open, which is optional and may be \u003ccode\u003enil\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThere's an initializer specifically for unit testing that allows setting the \u003ccode\u003estatus\u003c/code\u003e directly.\u003c/p\u003e\n"]]],["The `IsPlaceOpenResponse` struct represents the result of an `isPlaceOpen` query. It contains a single property, `status`, a boolean indicating whether the place is open (or nil if unknown). The struct has an initializer, `init(status:)`, intended for unit testing, allowing the setting of a specific `status` during testing. This struct provides the open or closed state of the requested place.\n"],null,["IsPlaceOpenResponse \n\n struct IsPlaceOpenResponse\n\n extension IsPlaceOpenResponse : Sendable\n\nThe response from the `isPlaceOpen` method.\n- `\n ``\n ``\n `\n\n [init(status:)](#/s:17GooglePlacesSwift19IsPlaceOpenResponseV6statusACSbSg_tcfc)`\n ` \n Initializes the response with a given status.\n\n This is meant to be used for unit testing purposes. \n\n Declaration \n Swift \n\n init(status: Bool?)\n\n Parameters\n\n |----------------|-------------------------------|\n | ` `*status*` ` | The open status of the place. |\n\n- `\n ``\n ``\n `\n\n [status](#/s:17GooglePlacesSwift19IsPlaceOpenResponseV6statusSbSgvp)`\n ` \n The open status of the place. \n\n Declaration \n Swift \n\n var status: Bool? { get }"]]