DBSHARINGListFolderMembersArgs
Objective-C
@interface DBSHARINGListFolderMembersArgs
: DBSHARINGListFolderMembersCursorArg <DBSerializable, NSCopying>
Swift
class DBSHARINGListFolderMembersArgs : DBSHARINGListFolderMembersCursorArg, DBSerializable, NSCopying
The ListFolderMembersArgs
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The ID for the shared folder.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull sharedFolderId;
Swift
var sharedFolderId: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithSharedFolderId:(nonnull NSString *)sharedFolderId actions:(nullable NSArray<DBSHARINGMemberAction *> *)actions limit:(nullable NSNumber *)limit;
Swift
init(sharedFolderId: String, actions: [DBSHARINGMemberAction]?, limit: NSNumber?)
Parameters
sharedFolderId
The ID for the shared folder.
actions
This is a list indicating whether each returned member will include a boolean value
allow
inDBSHARINGMemberPermission
that describes whether the current user can perform the MemberAction on the member.limit
The maximum number of results that include members, groups and invitees to return per request.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithSharedFolderId: (nonnull NSString *)sharedFolderId;
Swift
init(sharedFolderId: String)
Parameters
sharedFolderId
The ID for the shared folder.
Return Value
An initialized instance.