GMSPlacePhotoMetadataList.h 592 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GMSPlacePhotoMetadataList.h
  3. // Google Places SDK for iOS
  4. //
  5. // Copyright 2016 Google LLC
  6. //
  7. // Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
  8. // Service: https://developers.google.com/maps/terms
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "GMSPlacePhotoMetadata.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. /**
  14. * A list of |GMSPlacePhotoMetadata| objects.
  15. */
  16. @interface GMSPlacePhotoMetadataList : NSObject
  17. /**
  18. * The array of |GMSPlacePhotoMetadata| objects.
  19. */
  20. @property(nonatomic, readonly, copy) NSArray<GMSPlacePhotoMetadata *> *results;
  21. @end
  22. NS_ASSUME_NONNULL_END