Fix serialization of RSM first element

This commit is contained in:
Bohdan Horbeshko 2025-08-18 00:00:38 -04:00 committed by Mickaël Rémond
parent 6973779b17
commit 4073f34461

View File

@ -24,6 +24,6 @@ type ResultSet struct {
type First struct {
XMLName xml.Name `xml:"first"`
Content string
Index *int `xml:"index,attr,omitempty"`
Content string `xml:",cdata"`
Index *int `xml:"index,attr,omitempty"`
}