forked from ChimeraCoder/anaconda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
directmessage.go
97 lines (96 loc) · 3.65 KB
/
directmessage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package anaconda
type DirectMessage struct {
text string
entities struct {
urls []interface{}
hashtags []interface{}
user_mentions []interface{}
}
id_str string
created_at string
recipient_id float64
id float64
recipient_screen_name string
Sender struct {
name string
default_profile_image bool
profile_image_url_https string
notifications bool
protected bool
id_str string
profile_background_color string
created_at string
default_profile bool
url string
time_zone string
id float64
verified bool
profile_link_color string
profile_image_url string
profile_use_background_image bool
favourites_count float64
profile_background_image_url_https string
profile_sidebar_fill_color string
utc_offset float64
is_translator bool
follow_request_sent bool
following bool
profile_background_tile bool
show_all_inline_media bool
profile_text_color string
lang string
statuses_count float64
contributors_enabled bool
friends_count float64
geo_enabled bool
description string
profile_sidebar_border_color string
Screen_name string
listed_count float64
followers_count float64
location string
profile_background_image_url string
}
sender_id float64
recipient struct {
profile_text_color string
lang string
statuses_count float64
contributors_enabled bool
friends_count float64
geo_enabled bool
description string
profile_sidebar_border_color string
screen_name string
listed_count float64
followers_count float64
location string
profile_background_image_url string
name string
default_profile_image bool
profile_image_url_https string
notifications bool
protected bool
id_str string
profile_background_color string
created_at string
default_profile bool
url string
time_zone string
id float64
verified bool
profile_link_color string
profile_image_url string
profile_use_background_image bool
favourites_count float64
profile_background_image_url_https string
profile_sidebar_fill_color string
utc_offset float64
is_translator bool
follow_request_sent bool
following bool
profile_background_tile bool
show_all_inline_media bool
}
sender_screen_name string
}