DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails
Objective-C
@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails : NSObject, DBSerializable, NSCopying
The TeamMergeRequestSentShownToPrimaryTeamDetails struct.
Requested to merge their Dropbox team into yours.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The secondary team name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull secondaryTeam;Swift
var secondaryTeam: String { get } -
The name 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 }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithSecondaryTeam:(nonnull NSString *)secondaryTeam sentTo:(nonnull NSString *)sentTo;Swift
init(secondaryTeam: String, sentTo: String)Parameters
secondaryTeamThe secondary team name.
sentToThe name of the primary team admin the request was sent to.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails Class Reference