DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails

Objective-C

@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails : NSObject, DBSerializable, NSCopying

The SfAllowNonMembersToViewSharedLinksDetails struct.

Allowed non-collaborators to view links to files in shared 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

  • Target asset position in the Assets list.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSNumber *_Nonnull targetAssetIndex;

    Swift

    var targetAssetIndex: NSNumber { get }
  • Original shared folder name.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull originalFolderName;

    Swift

    var originalFolderName: String { get }
  • Shared folder type.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *sharedFolderType;

    Swift

    var sharedFolderType: String? { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithTargetAssetIndex:(nonnull NSNumber *)targetAssetIndex
              originalFolderName:(nonnull NSString *)originalFolderName
                sharedFolderType:(nullable NSString *)sharedFolderType;

    Swift

    init(targetAssetIndex: NSNumber, originalFolderName: String, sharedFolderType: String?)

    Parameters

    targetAssetIndex

    Target asset position in the Assets list.

    originalFolderName

    Original shared folder name.

    sharedFolderType

    Shared folder type.

    Return Value

    An initialized instance.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithTargetAssetIndex:(nonnull NSNumber *)targetAssetIndex
              originalFolderName:(nonnull NSString *)originalFolderName;

    Swift

    init(targetAssetIndex: NSNumber, originalFolderName: String)

    Parameters

    targetAssetIndex

    Target asset position in the Assets list.

    originalFolderName

    Original shared folder name.

    Return Value

    An initialized instance.