DBTEAMTeamFolderIdArg

Objective-C

@interface DBTEAMTeamFolderIdArg : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMTeamFolderIdArg : NSObject, DBSerializable, NSCopying

The TeamFolderIdArg 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 ID of the team folder.

    Declaration

    Objective-C

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

    Swift

    var teamFolderId: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeamFolderId:(nonnull NSString *)teamFolderId;

    Swift

    init(teamFolderId: String)

    Parameters

    teamFolderId

    The ID of the team folder.

    Return Value

    An initialized instance.