BlockedUserListQuery

@objc(SBDBlockedUserListQuery)
public class BlockedUserListQuery : NSObject, Queryable, UserListQuery

The BlockedUserListQuery class is a query class for getting the list of blocked users by the current user.

This instance is created by createBlockedUserListQuery() of SendbirdChat.

Since

3.0.120
  • Boolean indicates there are more data to fetch.

    Declaration

    Swift

    public internal(set) var hasNext: Bool { get }
  • Indicates the query is currently loading or not.

    Declaration

    Swift

    public internal(set) var isLoading: Bool { get }
  • Fetches next page

    Declaration

    Swift

    public func loadNextPage(completionHandler: @escaping UserListHandler)

    Parameters

    completionHandler

    completion handler

  • Copies this object

    Declaration

    Swift

    public func copy(with zone: NSZone? = nil) -> Any

    Parameters

    zone

    optional NSZone

    Return Value

    BlockedUserListQuery instance

Params Bridge

  • Sets the user IDs filter.

    Declaration

    Swift

    @objc
    public var userIdsFilter: [String]? { get }
  • Specifies the number of results to return per call. (Default: 20)

    Declaration

    Swift

    @objc
    public var limit: UInt { get }