FollowersQuery
@objc(GetSocialFollowersQuery)
@objcMembers
public final class FollowersQuery : NSObject
Describe query to get followers.
-
Create query to get followers of a topic.
Declaration
Swift
@objc(ofTopicWithId:) public static func ofTopic(_ id: String) -> FollowersQuery
Parameters
id
Topic id.
Return Value
New
FollowersQuery
instance. -
Create query to get followers of a group.
Declaration
Swift
@objc(ofGroupWithId:) public static func ofGroup(_ id: String) -> FollowersQuery
Parameters
id
Group id.
Return Value
New
FollowersQuery
instance. -
Create a query to get followers of a user.
Declaration
Swift
@objc(ofUserWithId:) public static func ofUser(_ id: UserId) -> FollowersQuery
Parameters
id
User id.
Return Value
New
FollowersQuery
instance. -
Create a query to get followers of a label.
- label: Label.
Declaration
Swift
@objc(ofLabel:) public static func ofLabel(_ label: String) -> FollowersQuery
Return Value
New
FollowersQuery
instance. -
Create a query to get followers of a tag.
- tag: Tag.
Declaration
Swift
@objc(ofTag:) public static func ofTag(_ tag: String) -> FollowersQuery
Return Value
New
FollowersQuery
instance. -
Description.
Declaration
Swift
public override var description: String { get }