SBDApplicationUserListQuery Class Reference

Inherits from SBDUserListQuery : NSObject
Conforms to NSCopying
Declared in SBDApplicationUserListQuery.h

Overview

The SBDApplicationUserListQuery class is a query class for getting the list of all users of the current application. This instance is created by createApplicationUserListQuery of SBDMain.

  userIdsFilter

Sets the user IDs filter.

@property (copy, nonatomic, nullable) NSArray<NSString*> *userIdsFilter

Declared In

SBDApplicationUserListQuery.h

  metaDataKeyFilter

The meta data key filter. This query will return users that has the meta data key and values. This has to be set by setMetaDataFilterWithKey:values:.

@property (copy, nonatomic, readonly, nullable) NSString *metaDataKeyFilter

Declared In

SBDApplicationUserListQuery.h

  metaDataValuesFilter

The meta data values filter. This query will return users that has the meta data key and values. This has to be set by setMetaDataFilterWithKey:values:.

@property (copy, nonatomic, readonly, nullable) NSArray<NSString*> *metaDataValuesFilter

Declared In

SBDApplicationUserListQuery.h

  nicknameStartsWithFilter

Filters user’s nickname that starts with

@property (copy, nonatomic, nullable) NSString *nicknameStartsWithFilter

Availability

3.0.223

Declared In

SBDApplicationUserListQuery.h

– setMetaDataFilterWithKey:values:

The key of the meta data to use for filter.

- (void)setMetaDataFilterWithKey:(nullable NSString *)key values:(nullable NSArray<NSString*> *)values

Parameters

key

The key of the meta data to use for filter.

values

The values of the meta data to use for filter.

Declared In

SBDApplicationUserListQuery.h