TypeIdentifier

public enum TypeIdentifier : String

The identifier corresponding to type portion of a HTTP media type String.

  • any

    Any kind of data. This is essentially a wildcard.

    Declaration

    Swift

    case any
  • Other data, typically uninterpreted binary data or information to be processed by an application.

    Declaration

    Swift

    case application
  • Audio data.

    Declaration

    Swift

    case audio
  • Image data.

    Declaration

    Swift

    case image
  • An encapsulated message, all or part of some kind of message object.

    Declaration

    Swift

    case message
  • Data consisting of multiple entities of indepdendent data types.

    Declaration

    Swift

    case multipart
  • Textual information.

    Declaration

    Swift

    case text
  • Video data.

    Declaration

    Swift

    case video