DBFILESCreateFolderBatchResult
Objective-C
@interface DBFILESCreateFolderBatchResult
: DBFILESFileOpsResult <DBSerializable, NSCopying>
Swift
class DBFILESCreateFolderBatchResult : DBFILESFileOpsResult, DBSerializable, NSCopying
The CreateFolderBatchResult struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Each entry in
pathsinDBFILESCreateFolderBatchArgwill appear at the same position insideentriesinDBFILESCreateFolderBatchResult.Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBFILESCreateFolderBatchResultEntry *> *_Nonnull entries;Swift
var entries: [DBFILESCreateFolderBatchResultEntry] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEntries: (nonnull NSArray<DBFILESCreateFolderBatchResultEntry *> *)entries;Swift
init(entries: [DBFILESCreateFolderBatchResultEntry])Parameters
entriesEach entry in
pathsinDBFILESCreateFolderBatchArgwill appear at the same position insideentriesinDBFILESCreateFolderBatchResult.Return Value
An initialized instance.
View on GitHub
DBFILESCreateFolderBatchResult Class Reference