added FetchScheduledTweets

This commit is contained in:
Valentine 2024-02-23 10:34:33 +03:00
parent 14ba33db9d
commit 7b2215391a
3 changed files with 164 additions and 0 deletions

View file

@ -80,6 +80,16 @@ type (
Error error
}
ScheduledTweet struct {
ID string
State string
ExecuteAt time.Time
Text string
Videos []Video
Photos []Photo
GIFs []GIF
}
legacyTweet struct {
ConversationIDStr string `json:"conversation_id_str"`
CreatedAt string `json:"created_at"`