DBTEAMLOGSharedContentDownloadDetails
Objective-C
@interface DBTEAMLOGSharedContentDownloadDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGSharedContentDownloadDetails : NSObject, DBSerializable, NSCopying
The SharedContentDownloadDetails struct.
Downloaded shared file/folder.
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 }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithSharedContentLink:(nonnull NSString *)sharedContentLink sharedContentAccessLevel: (nonnull DBSHARINGAccessLevel *)sharedContentAccessLevel sharedContentOwner: (nullable DBTEAMLOGUserLogInfo *)sharedContentOwner;Swift
init(sharedContentLink: String, sharedContentAccessLevel: DBSHARINGAccessLevel, sharedContentOwner: DBTEAMLOGUserLogInfo?)Parameters
sharedContentLinkShared content link.
sharedContentAccessLevelShared content access level.
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;Swift
init(sharedContentLink: String, sharedContentAccessLevel: DBSHARINGAccessLevel)Parameters
sharedContentLinkShared content link.
sharedContentAccessLevelShared content access level.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGSharedContentDownloadDetails Class Reference