DBFILESDeleteBatchResult
Objective-C
@interface DBFILESDeleteBatchResult
: DBFILESFileOpsResult <DBSerializable, NSCopying>
Swift
class DBFILESDeleteBatchResult : DBFILESFileOpsResult, DBSerializable, NSCopying
The DeleteBatchResult 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
entriesinDBFILESDeleteBatchArgwill appear at the same position insideentriesinDBFILESDeleteBatchResult.Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBFILESDeleteBatchResultEntry *> *_Nonnull entries;Swift
var entries: [DBFILESDeleteBatchResultEntry] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEntries: (nonnull NSArray<DBFILESDeleteBatchResultEntry *> *)entries;Swift
init(entries: [DBFILESDeleteBatchResultEntry])Parameters
entriesEach entry in
entriesinDBFILESDeleteBatchArgwill appear at the same position insideentriesinDBFILESDeleteBatchResult.Return Value
An initialized instance.
View on GitHub
DBFILESDeleteBatchResult Class Reference