DBTEAMListMemberAppsArg

Objective-C

@interface DBTEAMListMemberAppsArg : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMListMemberAppsArg : NSObject, DBSerializable, NSCopying

The ListMemberAppsArg struct.

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 team member id.

    Declaration

    Objective-C

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

    Swift

    var teamMemberId: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeamMemberId:(nonnull NSString *)teamMemberId;

    Swift

    init(teamMemberId: String)

    Parameters

    teamMemberId

    The team member id.

    Return Value

    An initialized instance.