DBTEAMLOGPrimaryTeamRequestCanceledDetails

Objective-C

@interface DBTEAMLOGPrimaryTeamRequestCanceledDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGPrimaryTeamRequestCanceledDetails : NSObject, DBSerializable, NSCopying

The PrimaryTeamRequestCanceledDetails struct.

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

    Declaration

    Objective-C

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

    Swift

    var secondaryTeam: 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)initWithSecondaryTeam:(nonnull NSString *)secondaryTeam
                                           sentBy:(nonnull NSString *)sentBy;

    Swift

    init(secondaryTeam: String, sentBy: String)

    Parameters

    secondaryTeam

    The secondary team name.

    sentBy

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

    Return Value

    An initialized instance.