xmlutil icon indicating copy to clipboard operation
xmlutil copied to clipboard

XML Serialization library for Kotlin

Results 52 xmlutil issues
Sort by recently updated
recently updated
newest added
trafficstars

Is it currently possible to ignore child type and deserialize it just for the fact it's a child? Here's a minimal setup: ```kt val xml = XML { } @Serializable...

This problem occurs with 0.90.2 and 0.90.3. See the following example: ```kotlin class Test { @Serializable @SerialName("element") data class Element( @XmlElement(true) val a: String ) @Serializable @SerialName("element") data class OtherElement(...

cantfix