Merge branch 'master' into user-name

This commit is contained in:
windowsdeveloperwannabe 2023-05-10 06:05:18 -07:00 committed by GitHub
commit d7b7a8754a
3 changed files with 38 additions and 0 deletions

View file

@ -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