MimeType

@Serializable(with = MimeTypeSerializer::class)
@SerialName(value = "MimeType")
enum MimeType : Enum<MimeType> , ProguardKeep(source)

Represents the possible MIME-types for an individual com.sipfront.sdk.json.media.MediaStream.

Since

1.0.8

Author

Dominik Ridjic

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Types

Link copied to clipboard
@Serializable
@SerialName(value = "Codec")
enum Codec : Enum<MimeType.Codec> , ProguardKeep
Link copied to clipboard
object Companion
Link copied to clipboard
@Serializable
@SerialName(value = "Extension")
enum Extension : Enum<MimeType.Extension> , ProguardKeep
Link copied to clipboard
@Serializable
@SerialName(value = "MediaType")
enum MediaType : Enum<MimeType.MediaType> , ProguardKeep

Properties

Link copied to clipboard
@SerialName(value = "codec")
val codec: MimeType.Codec? = null

The Codec of the MIME-type

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
@SerialName(value = "extension")
val extension: MimeType.Extension

The Extension of the MIME-type

Link copied to clipboard
@SerialName(value = "media_type")
val mediaType: MimeType.MediaType

The MediaType of the MIME-type

Link copied to clipboard
@SerialName(value = "raw")
val raw: String

The String representation of the MIME-type

Inherited properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun valueOf(value: String): MimeType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.