DBTEAMLOGSharedContentViewDetails

Objective-C

@interface DBTEAMLOGSharedContentViewDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSharedContentViewDetails : NSObject, DBSerializable, NSCopying

The SharedContentViewDetails struct.

Previewed 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.

Instance fields

Constructors

  • 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

    sharedContentLink

    Shared content link.

    sharedContentAccessLevel

    Shared content access level.

    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;

    Swift

    init(sharedContentLink: String, sharedContentAccessLevel: DBSHARINGAccessLevel)

    Parameters

    sharedContentLink

    Shared content link.

    sharedContentAccessLevel

    Shared content access level.

    Return Value

    An initialized instance.