DBSHARINGGetFileMetadataBatchResult
Objective-C
@interface DBSHARINGGetFileMetadataBatchResult
: NSObject <DBSerializable, NSCopying>
Swift
class DBSHARINGGetFileMetadataBatchResult : NSObject, DBSerializable, NSCopying
The GetFileMetadataBatchResult
struct.
Per file results of getFileMetadataBatch
.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
This is the input file identifier corresponding to one of
files
inDBSHARINGGetFileMetadataBatchArg
.Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull file;
Swift
var file: String { get }
-
The result for this particular file.
Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGGetFileMetadataIndividualResult *_Nonnull result;
Swift
var result: DBSHARINGGetFileMetadataIndividualResult { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithFile:(nonnull NSString *)file result:(nonnull DBSHARINGGetFileMetadataIndividualResult *)result;
Swift
init(file: String, result: DBSHARINGGetFileMetadataIndividualResult)
Parameters
file
This is the input file identifier corresponding to one of
files
inDBSHARINGGetFileMetadataBatchArg
.result
The result for this particular file.
Return Value
An initialized instance.