1234567891011121314151617181920212223242526272829 |
- //
- // GMSPlacePhotoMetadataList.h
- // Google Places SDK for iOS
- //
- // Copyright 2016 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 <UIKit/UIKit.h>
- #import "GMSPlacePhotoMetadata.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- * A list of |GMSPlacePhotoMetadata| objects.
- */
- @interface GMSPlacePhotoMetadataList : NSObject
- /**
- * The array of |GMSPlacePhotoMetadata| objects.
- */
- @property(nonatomic, readonly, copy) NSArray<GMSPlacePhotoMetadata *> *results;
- @end
- NS_ASSUME_NONNULL_END
|