NetworkInputType

enum NetworkInputType
extension NetworkInputType : Equatable, Hashable

Right now NetworkInput input can come in two non-customized types; either mapped data, think Dictionaries, or ordered data, think Arrays. This enum type specifies whether the input is in a known expected format or whether or not it is set to unknown.

  • Input is in the form of key/value pairs

    Declaration

    Swift

    case mapped
  • Input is in the form of ordered data such as an array or set

    Declaration

    Swift

    case ordered
  • Input is either customized or not in a form commonly expected

    Declaration

    Swift

    case unknown