StorageListResult
class StorageListResult : NSObject, NSCopying
Contains the prefixes and items returned by a StorageReference.list()
call.
-
Undocumented
-
The prefixes (folders) returned by the
list()
operation.Declaration
Swift
var prefixes: [FIRStorageReference] { get }
Return Value
A list of prefixes (folders).
-
The items (files) returned by the
list()
operation.Declaration
Swift
var items: [FIRStorageReference] { get }
Return Value
A list of items (files).
-
Returns a token that can be used to resume a previous
list()
operation.nil
indicates that there are no more results.Declaration
Swift
var pageToken: String? { get }
Return Value
A page token if more results are available.