MutableTweet_Reply - daneden/Twift GitHub Wiki

MutableTweet.Reply

An object describing how to form a reply to a Tweet

public struct Reply: Codable 

Inheritance

Codable

Initializers

init(inReplyToTweetId:excludeReplyUserIds:)

public init(inReplyToTweetId: Tweet.ID, excludeReplyUserIds: [User.ID]? = nil) 

Properties

excludeReplyUserIds

An array of User IDs to exclude from the replying Tweet

public var excludeReplyUserIds: [User.ID]?

inReplyToTweetId

The ID of the Tweet that this Tweet is replying to

public var inReplyToTweetId: Tweet.ID