From 0daa3fe8797ba4c5c05bfb7273a84b00d4e80193 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Mon, 6 Sep 2021 16:37:43 +0300 Subject: [PATCH] closes #50 - add housing field to Address struct --- v5/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/v5/types.go b/v5/types.go index c6c4c1a..bbeae59 100644 --- a/v5/types.go +++ b/v5/types.go @@ -46,6 +46,7 @@ type Address struct { Floor int `json:"floor,omitempty"` Block int `json:"block,omitempty"` House string `json:"house,omitempty"` + Housing string `json:"housing,omitempty"` Metro string `json:"metro,omitempty"` Notes string `json:"notes,omitempty"` Text string `json:"text,omitempty"`