DBFILESRelocationBatchV2Result
Objective-C
@interface DBFILESRelocationBatchV2Result
: DBFILESFileOpsResult <DBSerializable, NSCopying>
Swift
class DBFILESRelocationBatchV2Result : DBFILESFileOpsResult, DBSerializable, NSCopying
The RelocationBatchV2Result
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 CopyBatchArg.entries or
entries
inDBFILESMoveBatchArg
will appear at the same position insideentries
inDBFILESRelocationBatchV2Result
.Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBFILESRelocationBatchResultEntry *> *_Nonnull entries;
Swift
var entries: [DBFILESRelocationBatchResultEntry] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEntries: (nonnull NSArray<DBFILESRelocationBatchResultEntry *> *)entries;
Swift
init(entries: [DBFILESRelocationBatchResultEntry])
Parameters
entries
Each entry in CopyBatchArg.entries or
entries
inDBFILESMoveBatchArg
will appear at the same position insideentries
inDBFILESRelocationBatchV2Result
.Return Value
An initialized instance.