DBTEAMLOGTeamMergeRequestRevokedDetails

Objective-C

@interface DBTEAMLOGTeamMergeRequestRevokedDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGTeamMergeRequestRevokedDetails : NSObject, DBSerializable, NSCopying

The TeamMergeRequestRevokedDetails struct.

Canceled the team merge.

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 name of the other team.

    Declaration

    Objective-C

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

    Swift

    var team: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeam:(nonnull NSString *)team;

    Swift

    init(team: String)

    Parameters

    team

    The name of the other team.

    Return Value

    An initialized instance.