PlacesError
enum PlacesError
extension PlacesError : Equatable, Error, Hashable, Sendable
Places error types.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
case deviceRateLimitExceeded(String)
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashable
protocol. 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 thehasher
instance provided, or replace it with a different instance. Doing so may become a compile-time error in the future.Declaration
Swift
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
hashValue
is deprecated as aHashable
requirement. To conform toHashable
, implement thehash(into:)
requirement instead. The compiler provides an implementation forhashValue
for you.Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
case keyInvalid(String)
-
Undocumented
Declaration
Swift
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.
Declaration
Swift
case location(String)
-
Something went wrong with the connection to the Places API server.
Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
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.
Declaration
Swift
case usageLimitExceeded(String)