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
paths
inDBFILESCreateFolderBatchArg
will appear at the same position insideentries
inDBFILESCreateFolderBatchResult
.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
entries
Each entry in
paths
inDBFILESCreateFolderBatchArg
will appear at the same position insideentries
inDBFILESCreateFolderBatchResult
.Return Value
An initialized instance.