Merge branch 'master' into user-name
This commit is contained in:
commit
d7b7a8754a
3 changed files with 38 additions and 0 deletions
8
types.go
8
types.go
|
|
@ -3,6 +3,13 @@ package twitterscraper
|
|||
import "time"
|
||||
|
||||
type (
|
||||
// Mention type.
|
||||
Mention struct {
|
||||
ID string
|
||||
Username string
|
||||
Name string
|
||||
}
|
||||
|
||||
// Photo type.
|
||||
Photo struct {
|
||||
ID string
|
||||
|
|
@ -28,6 +35,7 @@ type (
|
|||
IsRetweet bool
|
||||
Likes int
|
||||
Name string
|
||||
Mentions []Mention
|
||||
PermanentURL string
|
||||
Photos []Photo
|
||||
Place *Place
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue