DBSHARINGListFolderMembersCursorArg

Objective-C

@interface DBSHARINGListFolderMembersCursorArg
    : NSObject <DBSerializable, NSCopying>

Swift

class DBSHARINGListFolderMembersCursorArg : NSObject, DBSerializable, NSCopying

The ListFolderMembersCursorArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • This is a list indicating whether each returned member will include a boolean value allow in DBSHARINGMemberPermission that describes whether the current user can perform the MemberAction on the member.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSArray<DBSHARINGMemberAction *> *actions;

    Swift

    var actions: [DBSHARINGMemberAction]? { get }
  • The maximum number of results that include members, groups and invitees to return per request.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSNumber *_Nonnull limit;

    Swift

    var limit: NSNumber { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithActions:
                                (nullable NSArray<DBSHARINGMemberAction *> *)actions
                                      limit:(nullable NSNumber *)limit;

    Swift

    init(actions: [DBSHARINGMemberAction]?, limit: NSNumber?)

    Parameters

    actions

    This is a list indicating whether each returned member will include a boolean value allow in DBSHARINGMemberPermission 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)initDefault;

    Swift

    init(default: ())

    Return Value

    An initialized instance.