DBTEAMLOGMemberTransferredInternalFields

Objective-C

@interface DBTEAMLOGMemberTransferredInternalFields
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGMemberTransferredInternalFields : NSObject, DBSerializable, NSCopying

The MemberTransferredInternalFields struct.

Internal only - fields for target team computations

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • Internal only - team user was moved from.

    Declaration

    Objective-C

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

    Swift

    var sourceTeamId: String { get }
  • Internal only - team user was moved to.

    Declaration

    Objective-C

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

    Swift

    var targetTeamId: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithSourceTeamId:(nonnull NSString *)sourceTeamId
                                    targetTeamId:(nonnull NSString *)targetTeamId;

    Swift

    init(sourceTeamId: String, targetTeamId: String)

    Parameters

    sourceTeamId

    Internal only - team user was moved from.

    targetTeamId

    Internal only - team user was moved to.

    Return Value

    An initialized instance.