DBSHARINGShareFolderArgBase

Objective-C

@interface DBSHARINGShareFolderArgBase : NSObject <DBSerializable, NSCopying>

Swift

class DBSHARINGShareFolderArgBase : NSObject, DBSerializable, NSCopying

The ShareFolderArgBase 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

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)
             initWithPath:(nonnull NSString *)path
          aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy
               forceAsync:(nullable NSNumber *)forceAsync
             memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy
         sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy
         viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy
        accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance;

    Swift

    init(path: String, aclUpdatePolicy: DBSHARINGAclUpdatePolicy?, forceAsync: NSNumber?, memberPolicy: DBSHARINGMemberPolicy?, sharedLinkPolicy: DBSHARINGSharedLinkPolicy?, viewerInfoPolicy: DBSHARINGViewerInfoPolicy?, accessInheritance: DBSHARINGAccessInheritance?)

    Parameters

    path

    The path to the folder to share. If it does not exist, then a new one is created.

    aclUpdatePolicy

    Who can add and remove members of this shared folder.

    forceAsync

    Whether to force the share to happen asynchronously.

    memberPolicy

    Who can be a member of this shared folder. Only applicable if the current user is on a team.

    sharedLinkPolicy

    The policy to apply to shared links created for content inside this shared folder. The current user must be on a team to set this policy to members in DBSHARINGSharedLinkPolicy.

    viewerInfoPolicy

    Who can enable/disable viewer info for this shared folder.

    accessInheritance

    The access inheritance settings for the folder.

    Return Value

    An initialized instance.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPath:(nonnull NSString *)path;

    Swift

    init(path: String)

    Parameters

    path

    The path to the folder to share. If it does not exist, then a new one is created.

    Return Value

    An initialized instance.