DBTEAMLOGSharedContentCopyDetails
Objective-C
@interface DBTEAMLOGSharedContentCopyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGSharedContentCopyDetails : NSObject, DBSerializable, NSCopying
The SharedContentCopyDetails struct.
Copied shared file/folder to own Dropbox.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Shared content link.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull sharedContentLink;Swift
var sharedContentLink: String { get } -
The shared content owner.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner;Swift
var sharedContentOwner: DBTEAMLOGUserLogInfo? { get } -
Shared content access level.
Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGAccessLevel *_Nonnull sharedContentAccessLevel;Swift
var sharedContentAccessLevel: DBSHARINGAccessLevel { get } -
The path where the member saved the content.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull destinationPath;Swift
var destinationPath: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithSharedContentLink:(nonnull NSString *)sharedContentLink sharedContentAccessLevel: (nonnull DBSHARINGAccessLevel *)sharedContentAccessLevel destinationPath:(nonnull NSString *)destinationPath sharedContentOwner: (nullable DBTEAMLOGUserLogInfo *)sharedContentOwner;Swift
init(sharedContentLink: String, sharedContentAccessLevel: DBSHARINGAccessLevel, destinationPath: String, sharedContentOwner: DBTEAMLOGUserLogInfo?)Parameters
sharedContentLinkShared content link.
sharedContentAccessLevelShared content access level.
destinationPathThe path where the member saved the content.
sharedContentOwnerThe shared content owner.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype) initWithSharedContentLink:(nonnull NSString *)sharedContentLink sharedContentAccessLevel: (nonnull DBSHARINGAccessLevel *)sharedContentAccessLevel destinationPath:(nonnull NSString *)destinationPath;Swift
init(sharedContentLink: String, sharedContentAccessLevel: DBSHARINGAccessLevel, destinationPath: String)Parameters
sharedContentLinkShared content link.
sharedContentAccessLevelShared content access level.
destinationPathThe path where the member saved the content.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGSharedContentCopyDetails Class Reference