DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails

Objective-C

@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails : NSObject, DBSerializable, NSCopying

The TeamMergeRequestSentShownToSecondaryTeamDetails struct.

Requested to merge your team into another Dropbox team.

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 of the primary team admin the request was sent to.

    Declaration

    Objective-C

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

    Swift

    var sentTo: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithSentTo:(nonnull NSString *)sentTo;

    Swift

    init(sentTo: String)

    Parameters

    sentTo

    The email of the primary team admin the request was sent to.

    Return Value

    An initialized instance.