DBUSERSGetAccountBatchArg
Objective-C
@interface DBUSERSGetAccountBatchArg : NSObject <DBSerializable, NSCopying>
Swift
class DBUSERSGetAccountBatchArg : NSObject, DBSerializable, NSCopying
The GetAccountBatchArg struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
List of user account identifiers. Should not contain any duplicate account IDs.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSString *> *_Nonnull accountIds;Swift
var accountIds: [String] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithAccountIds: (nonnull NSArray<NSString *> *)accountIds;Swift
init(accountIds: [String])Parameters
accountIdsList of user account identifiers. Should not contain any duplicate account IDs.
Return Value
An initialized instance.
View on GitHub
DBUSERSGetAccountBatchArg Class Reference