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.

Instance fields

  • 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 }

Constructors

  • 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

    sharedContentLink

    Shared content link.

    sharedContentAccessLevel

    Shared content access level.

    destinationPath

    The path where the member saved the content.

    sharedContentOwner

    The 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

    sharedContentLink

    Shared content link.

    sharedContentAccessLevel

    Shared content access level.

    destinationPath

    The path where the member saved the content.

    Return Value

    An initialized instance.