FollowResponse - daneden/Twift GitHub Wiki

FollowResponse

A response object containing information relating to a follow status.

public struct FollowResponse: Codable 

Inheritance

Codable

Properties

following

Indicates whether the id is following the specified object (User or List) as a result of this request. This value is false if the target is a user without public Tweets, as they will have to approve the follower request.

public let following: Bool

pendingFollow

Indicates whether the target user will need to approve the follow request. Note that the authenticated user will follow the target user only when they approve the incoming follower request.

public let pendingFollow: Bool?