DBTEAMLOGSecondaryTeamRequestAcceptedDetails

Objective-C

@interface DBTEAMLOGSecondaryTeamRequestAcceptedDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSecondaryTeamRequestAcceptedDetails : NSObject, DBSerializable, NSCopying

The SecondaryTeamRequestAcceptedDetails struct.

Team merge request acceptance details shown to the secondary 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 primary team name.

    Declaration

    Objective-C

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

    Swift

    var primaryTeam: String { get }
  • The name of the secondary team admin who sent the request originally.

    Declaration

    Objective-C

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

    Swift

    var sentBy: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPrimaryTeam:(nonnull NSString *)primaryTeam
                                         sentBy:(nonnull NSString *)sentBy;

    Swift

    init(primaryTeam: String, sentBy: String)

    Parameters

    primaryTeam

    The primary team name.

    sentBy

    The name of the secondary team admin who sent the request originally.

    Return Value

    An initialized instance.