Created
February 21, 2019 20:16
-
-
Save leogdion/e3e69b1d7888bec1945f2fcadb964c96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct Tweet : Codable { | |
public let created_at : Date | |
public let id : Int | |
public let full_text : String | |
public let display_text_range : [Int] | |
public let entities : TweetEntities | |
public let source : String | |
public let in_reply_to_status_id : Int? | |
public let in_reply_to_user_id : Int? | |
public let in_reply_to_screen_name : String | |
public let user : TweetUser | |
public let quoted_status : QuotedTweet? | |
public let is_quote_status : Bool | |
public let retweet_count : Int | |
public let favorite_count : Int | |
public let favorited : Bool | |
public let retweeted : Bool | |
public let possibly_sensitive : Bool | |
public let possibly_sensitive_appealable : Bool | |
public let lang : String | |
} | |
public struct QuotedTweet : Codable { | |
public let created_at : Date | |
public let id : Int | |
public let full_text : String | |
public let display_text_range : [Int] | |
public let entities : TweetEntities | |
public let user : TweetUser | |
public let source : String | |
public let extended_entities : TweetEntities | |
public let is_quote_status : Bool | |
public let retweet_count : Int | |
public let favorite_count : Int | |
public let favorited : Bool | |
public let retweeted : Bool | |
public let possibly_sensitive : Bool | |
public let possibly_sensitive_appealable : Bool | |
public let lang : String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment