From d45e44b24932326daecbfa5705638ae6d23472b8 Mon Sep 17 00:00:00 2001 From: Marius Grigoriu Date: Thu, 4 Mar 2021 23:38:47 -0800 Subject: [PATCH] Add MIC to Stock Finnhub API returns MIC so we need it captured in the struct --- model_stock.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/model_stock.go b/model_stock.go index 7c7e829..b7771e8 100644 --- a/model_stock.go +++ b/model_stock.go @@ -20,4 +20,6 @@ type Stock struct { Type string `json:"type,omitempty"` // Price's currency. This might be different from the reporting currency of fundamental data. Currency string `json:"currency,omitempty"` + // MIC code + MIC string `json:"mic,omitempty"` }