FirebaseStorage Framework Reference

StorageListResult

@objc(FIRStorageListResult)
open class StorageListResult : NSObject

Contains the prefixes and items returned by a StorageReference.list() call.

  • The prefixes (folders) returned by a list() operation.

    Declaration

    Swift

    @objc
    public let prefixes: [StorageReference]
  • The objects (files) returned by a list() operation.

    Declaration

    Swift

    @objc
    public let items: [StorageReference]
  • A token that can be used to resume a previous list() operation. nil indicates that there are no more results.

    Declaration

    Swift

    @objc
    public let pageToken: String?
  • Undocumented

    Declaration

    Swift

    override open func copy() -> Any