How do I properly define a Rotator (Rotation) variable in Verse and get it's Pitch, Roll and Yaw values?

I quite don’t understand how Rotator variable types work in Verse. The documentation provided on the matter is lacking and I am still learning Verse in general.

From what I understand, creating a variable like this defines a Rotator with 0 value in Pitch, Roll and Yaw.

var NewRotator : rotation = rotation{}

I can also make use of the method MakeRotator() to create a rotation type variable too.

However, I can’t figure out how I can break this rotator and get the individual Axis inside the variable. For example, I have a fort_character rotation variable and I want to get the Yaw value of it.

Which method or property do you use to get this float value?