PlacesError
enum PlacesErrorextension PlacesError : Equatable, Error, Hashable, SendablePlaces error types.
- 
                  
                  Returns a Boolean value indicating whether two values are equal. Equality is the inverse of inequality. For any values aandb,a == bimplies thata != bisfalse.DeclarationSwift static func == (a: PlacesError, b: PlacesError) -> Bool
- 
                  
                  The Places API service for iOS is not enabled. See the developer’s guide to learn how to set up the Places SDK for iOS or the migration guide if you are migrating from an earlier version. DeclarationSwift case accessNotConfigured(String)
- 
                  
                  Operation failed due to exceeding the per-device usage rate limit. This status code shouldn’t be returned during normal usage of the API. It relates to usage of the API that far exceeds normal request levels. See the usage limits guide for more information. DeclarationSwift case deviceRateLimitExceeded(String)
- 
                  
                  Hashes the essential components of this value by feeding them into the given hasher. Implement this method to conform to the Hashableprotocol. The components used for hashing must be the same as the components compared in your type’s==operator implementation. Callhasher.combine(_:)with each of these components.Important In your implementation of hash(into:), don’t callfinalize()on thehasherinstance provided, or replace it with a different instance. Doing so may become a compile-time error in the future.DeclarationSwift func hash(into hasher: inout Hasher)
- 
                  
                  The hash value. Hash values are not guaranteed to be equal across different executions of your program. Do not save hash values to use during a future execution. Important hashValueis deprecated as aHashablerequirement. To conform toHashable, implement thehash(into:)requirement instead. The compiler provides an implementation forhashValuefor you.DeclarationSwift var hashValue: Int { get }
- 
                  
                  The application’s bundle identifier does not match one of the allowed iOS applications for the API key. See the developer’s guide for how to configure bundle restrictions on API keys. DeclarationSwift case incorrectBundleIdentifier(String)
- 
                  
                  An internal error occurred in the Places SDK library. If you believe this error represents a bug, please file a report using the instructions on our community and support page. DeclarationSwift case `internal`(String)
- 
                  
                  The Places SDK could not process the invalid request. If you believe this error represents a bug, please file a report using the instructions on our community and support page. DeclarationSwift case invalidRequest(String)
- 
                  
                  Operation failed due to an expired API key. See the developer’s guide for information on creating and using an API key. DeclarationSwift case keyExpired(String)
- 
                  
                  Operation failed due to an invalid (malformed or missing) API key. See the developer’s guide for information on creating and using an API key. DeclarationSwift case keyInvalid(String)
- 
                  
                  Retrieve the localized description for this error. DeclarationSwift var localizedDescription: String { get }
- 
                  
                  The Places SDK could not find the user’s location. This may be because the user has not allowed the application to access location information. DeclarationSwift case location(String)
- 
                  
                  Something went wrong with the connection to the Places API server. DeclarationSwift case network(String)
- 
                  
                  Operation failed due to exceeding the usage rate limit for the API key. This status code shouldn’t be returned during normal usage of the API. It relates to usage of the API that far exceeds normal request levels. See the usage limits guide for more information. DeclarationSwift case rateLimitExceeded(String)
- 
                  
                  The Places API server returned a response that we couldn’t understand. If you believe this error represents a bug, please file a report using the instructions on our community and support page. DeclarationSwift case server(String)
- 
                  
                  Operation failed due to exceeding the quota usage limit. See the usage limits guide for information on usage limits and how to request a higher limit. DeclarationSwift case usageLimitExceeded(String)