From 1592f1ad863af4904934fa2b371e6fed8a05b9af Mon Sep 17 00:00:00 2001 From: Michael Sestito Date: Mon, 26 Mar 2018 15:47:42 -0400 Subject: [PATCH] add symbols entity object to entities struct --- twitter_entities.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/twitter_entities.go b/twitter_entities.go index 6d4e483..fd8a3ce 100644 --- a/twitter_entities.go +++ b/twitter_entities.go @@ -20,6 +20,10 @@ type Entities struct { Indices []int `json:"indices"` Text string `json:"text"` } `json:"hashtags"` + Symbols []struct { + Indices []int `json:"indices"` + Text string `json:"text"` + } `json:"symbols"` Url UrlEntity `json:"url"` User_mentions []struct { Name string `json:"name"`