From 67bd471c2a35ef77306a94bb698474c8d2563933 Mon Sep 17 00:00:00 2001 From: Edward Brey Date: Thu, 30 Apr 2020 05:09:33 -0500 Subject: [PATCH] Fix "supermarket" missing from PlaceTypes Fixes #401. This is a breaking change: the type of `Google.Places.Types` is changed from `PlaceType[]` to `string[]`. --- source/Google/Places/ApiDefinition.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/source/Google/Places/ApiDefinition.cs b/source/Google/Places/ApiDefinition.cs index 206dd012e..f9971e55e 100644 --- a/source/Google/Places/ApiDefinition.cs +++ b/source/Google/Places/ApiDefinition.cs @@ -20,7 +20,6 @@ interface AddressComponent NSString Type { get; } // @property (readonly, nonatomic, strong) NSArray * _Nonnull types; - [BindAs (typeof (PlaceType []))] [Export ("types", ArgumentSemantic.Strong)] NSString [] Types { get; }