Uploadable

public protocol Uploadable

The protocol any uploadables must conform to.

  • The filename of this uploadable, or nil if unavailable.

    Declaration

    Swift

    var filename: String? { get }
  • The size of this uploadable in bytes, or nil if unavailable.

    Declaration

    Swift

    var size: UInt64? { get }
  • The MIME type of this uploadable, or nil if unavailable.

    Declaration

    Swift

    var mimeType: String? { get }