# SoundTranslation > Represents a sound with volume, pitch, and category to be played alongside a translation. `gg.lode.observerapi.api.data` --- ## Signature ```java public record SoundTranslation(String sound, float volume, float pitch, SoundCategory soundCategory) ``` --- ## Methods ### sound ```java public String sound() ``` **Returns:** `String` - the sound identifier --- ### volume ```java public float volume() ``` **Returns:** `float` - the playback volume --- ### pitch ```java public float pitch() ``` **Returns:** `float` - the playback pitch --- ### soundCategory ```java public SoundCategory soundCategory() ``` **Returns:** `SoundCategory` - the sound category for volume control --- ## Related Pages - [[Translation]] - [[ITranslationManager]]