PrivateCodeDto

@Serializable
@Xml(name = "PrivateCode")
data class PrivateCodeDto(@PropertyElement(name = "System") val system: String, @PropertyElement(name = "Value") val value: String) : Parcelable

Created by Michael Ruppen on 26.04.2024

Serializable and Parcelize annotation is both needed for compose navigation with custom types

Constructors

Link copied to clipboard
constructor(@PropertyElement(name = "System") system: String, @PropertyElement(name = "Value") value: String)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)