DBTEAMExcludedUsersUpdateArg
Objective-C
@interface DBTEAMExcludedUsersUpdateArg : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMExcludedUsersUpdateArg : NSObject, DBSerializable, NSCopying
The ExcludedUsersUpdateArg
struct.
Argument of excluded users update operation. Should include a list of users to add/remove (according to endpoint), Maximum size of the list is 1000 users.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
List of users to be added/removed.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<DBTEAMUserSelectorArg *> *users;
Swift
var users: [DBTEAMUserSelectorArg]? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithUsers: (nullable NSArray<DBTEAMUserSelectorArg *> *)users;
Swift
init(users: [DBTEAMUserSelectorArg]?)
Parameters
users
List of users to be added/removed.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initDefault;
Swift
init(default: ())
Return Value
An initialized instance.