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.

Instance fields

  • 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 }

Constructors

  • 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.