How to get values from geometry_msgs/Pose Message (Ros2)?

Hi,
I have created a connection between Unity and Ros2 via INode ISubscription.
Accessing float, string values works. But now I would like to use Pose. How do I access the nested values in Unity there?

You should be able to access its properties like any other property - myPoseMsg.position and myPoseMsg.orientation.
To convert them into Unity coordinates you can write myPoseMsg.position.From().
See RosGeometry docs here: