DBTEAMLOGSharedFolderTransferOwnershipDetails

Objective-C

@interface DBTEAMLOGSharedFolderTransferOwnershipDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSharedFolderTransferOwnershipDetails : NSObject, DBSerializable, NSCopying

The SharedFolderTransferOwnershipDetails struct.

Transferred ownership of shared folder to another member.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • The email address of the previous shared folder owner.

    Declaration

    Objective-C

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

    Swift

    var previousOwnerEmail: String? { get }
  • The email address of the new shared folder owner.

    Declaration

    Objective-C

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

    Swift

    var dNewOwnerEmail: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithDNewOwnerEmail:(nonnull NSString *)dNewOwnerEmail
            previousOwnerEmail:(nullable NSString *)previousOwnerEmail;

    Swift

    init(dNewOwnerEmail: String, previousOwnerEmail: String?)

    Parameters

    dNewOwnerEmail

    The email address of the new shared folder owner.

    previousOwnerEmail

    The email address of the previous shared folder owner.

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDNewOwnerEmail:
        (nonnull NSString *)dNewOwnerEmail;

    Swift

    init(dNewOwnerEmail: String)

    Parameters

    dNewOwnerEmail

    The email address of the new shared folder owner.

    Return Value

    An initialized instance.