FIRStorageListResult
@interface FIRStorageListResult : NSObjectContains the prefixes and items returned by a StorageReference.list() call.
-
The prefixes (folders) returned by a
list()operation.returns: A list of prefixes (folders).
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSArray<FIRStorageReference *> *_Nonnull prefixes; -
The objects (files) returned by a
list()operation.returns: A page token if more results are available.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSArray<FIRStorageReference *> *_Nonnull items; -
Returns a token that can be used to resume a previous
list()operation.nilindicates that there are no more results.returns: A page token if more results are available.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nullable pageToken; -
Undocumented
Declaration
Objective-C
- (id _Nonnull)copy SWIFT_WARN_UNUSED_RESULT; -
Undocumented
Declaration
Objective-C
- (nonnull instancetype)init SWIFT_UNAVAILABLE; -
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");