I am using the data types library in a project that creates specific CDA instances.
When serialising a ST data type to XML then something along the lines of the following is obtained :
Code:<title representation="TXT" mediaType="text/plain" language="en-US">text value is here</title>
When using ST data types I am not used to seeing the attributes shown, in fact I am trying to get rid of them, so I simply get
Code:<title>text value is here</title>
Is there a way of achieving this without having to change the formatter code?
thanks