DBTEAMListMemberAppsResult
Objective-C
@interface DBTEAMListMemberAppsResult : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMListMemberAppsResult : NSObject, DBSerializable, NSCopying
The ListMemberAppsResult
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
List of third party applications linked by this team member.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBTEAMApiApp *> *_Nonnull linkedApiApps;
Swift
var linkedApiApps: [DBTEAMApiApp] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithLinkedApiApps: (nonnull NSArray<DBTEAMApiApp *> *)linkedApiApps;
Swift
init(linkedApiApps: [DBTEAMApiApp])
Parameters
linkedApiApps
List of third party applications linked by this team member.
Return Value
An initialized instance.