DBTEAMLOGSharedLinkShareDetails
Objective-C
@interface DBTEAMLOGSharedLinkShareDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGSharedLinkShareDetails : NSObject, DBSerializable, NSCopying
                The SharedLinkShareDetails struct.
Added members as audience of shared link.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
Shared link owner details. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner;Swift
var sharedLinkOwner: DBTEAMLOGUserLogInfo? { get } - 
                  
                  
Users without a Dropbox account that were added as shared link audience.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<DBTEAMLOGExternalUserLogInfo *> *externalUsers;Swift
var externalUsers: [DBTEAMLOGExternalUserLogInfo]? { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner externalUsers:(nullable NSArray<DBTEAMLOGExternalUserLogInfo *> *) externalUsers;Swift
init(sharedLinkOwner: DBTEAMLOGUserLogInfo?, externalUsers: [DBTEAMLOGExternalUserLogInfo]?)Parameters
sharedLinkOwnerShared link owner details. Might be missing due to historical data gap.
externalUsersUsers without a Dropbox account that were added as shared link audience.
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.
 
View on GitHub
        DBTEAMLOGSharedLinkShareDetails Class Reference