ContainerProfile

@Serializable
data class ContainerProfile(val type: DlnaProfileType, val conditions: List<ProfileCondition>, val container: String? = null, val subContainer: String? = null)

Defines the MediaBrowser.Model.Dlna.ContainerProfile.

Constructors

Link copied to clipboard
constructor(type: DlnaProfileType, conditions: List<ProfileCondition>, container: String? = null, subContainer: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "Conditions")
val conditions: List<ProfileCondition>

The list of MediaBrowser.Model.Dlna.ProfileCondition which this container will be applied to.

Link copied to clipboard
@SerialName(value = "Container")
val container: String?

The container(s) which this container must meet.

Link copied to clipboard
@SerialName(value = "SubContainer")
val subContainer: String?

The sub container(s) which this container must meet.

Link copied to clipboard
@SerialName(value = "Type")
val type: DlnaProfileType

The MediaBrowser.Model.Dlna.DlnaProfileType which this container must meet.