[[["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-08-27 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSPlacesBusinessStatus\u003c/code\u003e is an enum that describes the operational status of a business.\u003c/p\u003e\n"],["\u003cp\u003eIt provides four possible states: unknown, operational, closed temporarily, and closed permanently.\u003c/p\u003e\n"],["\u003cp\u003eEach state is represented by an integer value and is accessible through both Swift and Objective-C.\u003c/p\u003e\n"],["\u003cp\u003eThis enum is useful for developers working with the Google Places API to display accurate business information.\u003c/p\u003e\n"]]],[],null,["# GooglePlaces Framework Reference\n\nGMSPlacesBusinessStatus\n=======================\n\n enum GMSPlacesBusinessStatus : NSInteger {}\n\nDescribes the business status of a place.\n- `\n ``\n ``\n `\n\n ### [GMSPlacesBusinessStatusUnknown](#/c:@E@GMSPlacesBusinessStatus@GMSPlacesBusinessStatusUnknown)\n\n `\n ` \n The business status is not known. \n\n #### Declaration\n\n Swift \n\n case unknown = 0\n\n Objective-C \n\n GMSPlacesBusinessStatusUnknown\n\n- `\n ``\n ``\n `\n\n ### [GMSPlacesBusinessStatusOperational](#/c:@E@GMSPlacesBusinessStatus@GMSPlacesBusinessStatusOperational)\n\n `\n ` \n The business is operational. \n\n #### Declaration\n\n Swift \n\n case operational = 1\n\n Objective-C \n\n GMSPlacesBusinessStatusOperational\n\n- `\n ``\n ``\n `\n\n ### [GMSPlacesBusinessStatusClosedTemporarily](#/c:@E@GMSPlacesBusinessStatus@GMSPlacesBusinessStatusClosedTemporarily)\n\n `\n ` \n The business is closed temporarily. \n\n #### Declaration\n\n Swift \n\n case closedTemporarily = 2\n\n Objective-C \n\n GMSPlacesBusinessStatusClosedTemporarily\n\n- `\n ``\n ``\n `\n\n ### [GMSPlacesBusinessStatusClosedPermanently](#/c:@E@GMSPlacesBusinessStatus@GMSPlacesBusinessStatusClosedPermanently)\n\n `\n ` \n The business is closed permanently. \n\n #### Declaration\n\n Swift \n\n case closedPermanently = 3\n\n Objective-C \n\n GMSPlacesBusinessStatusClosedPermanently"]]