Prosody

data class Prosody(val rate: String? = null, val pitch: String? = null, val volume: String? = null, val children: List<SsmlNode> = emptyList()) : SsmlNode

Prosody modifier. Rendered as <prosody rate="..." pitch="..." volume="...">.

Constructors

Link copied to clipboard
constructor(rate: String? = null, pitch: String? = null, volume: String? = null, children: List<SsmlNode> = emptyList())

Properties

Link copied to clipboard

Child nodes wrapped by this prosody element.

Link copied to clipboard

SSML pitch value, or null to omit.

Link copied to clipboard
val rate: String?

SSML rate value, or null to omit.

Link copied to clipboard

SSML volume value, or null to omit.