[[["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-11-08 UTC."],[[["`GMSPlacesPriceLevel` is an enum used to describe the price level of a place."],["It includes levels ranging from free to expensive, with an additional unknown level."],["The enum is represented by integer values, with -1 indicating unknown and increasing values for higher price levels."],["It is available in both Swift and Objective-C with corresponding case/constant names."]]],["GMSPlacesPriceLevel is an enumeration that defines the price levels of a place. It uses `NSInteger` for representation. The available levels are `unknown` (-1), `free` (0), `cheap` (1), `medium` (2), `high` (3), and `expensive` (4). Each level is available for both Swift (`case`) and Objective-C (`kGMSPlacesPriceLevel`) implementations, with the associated integer values representing its cost category.\n"]]