From a68ccd04213cb5cfde2e12ea8627ee5cc225fcd3 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Tue, 26 Jul 2022 02:24:32 -0400 Subject: [PATCH] Added field for zip code, not yet implemented --- proto/current.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/current.proto b/proto/current.proto index dc8b15d..e463922 100644 --- a/proto/current.proto +++ b/proto/current.proto @@ -9,6 +9,7 @@ import "location_types.proto"; message RequestCurrent { //LocationType location_type = 1; NOT IMPLEMENTED YET string city = 1; + // optional string zip_code = 2; NOT IMPLEMENTED YET optional string state = 2; // US Only optional string country = 3; // Must be ISO 3166 country code }