DBSHARINGMountFolderArg
Objective-C
@interface DBSHARINGMountFolderArg : NSObject <DBSerializable, NSCopying>
Swift
class DBSHARINGMountFolderArg : NSObject, DBSerializable, NSCopying
The MountFolderArg
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 of the shared folder to mount.
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;
Swift
init(sharedFolderId: String)
Parameters
sharedFolderId
The ID of the shared folder to mount.
Return Value
An initialized instance.