1234567891011121314151617181920212223 |
- //
- // GMSAutocompleteSessionToken.h
- // Google Places SDK for iOS
- //
- // Copyright 2018 Google LLC
- //
- // Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
- // Service: https://developers.google.com/maps/terms
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * This class represents an session token to uniquely identify an series of queries to the Google
- * Places API Services for fetching place predictions for a partial search string.
- */
- @interface GMSAutocompleteSessionToken : NSObject
- @end
- NS_ASSUME_NONNULL_END
|