DBTEAMTeamFolderIdListArg
Objective-C
@interface DBTEAMTeamFolderIdListArg : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMTeamFolderIdListArg : NSObject, DBSerializable, NSCopying
The TeamFolderIdListArg
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The list of team folder IDs.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSString *> *_Nonnull teamFolderIds;
Swift
var teamFolderIds: [String] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithTeamFolderIds: (nonnull NSArray<NSString *> *)teamFolderIds;
Swift
init(teamFolderIds: [String])
Parameters
teamFolderIds
The list of team folder IDs.
Return Value
An initialized instance.