KeyedData
public struct KeyedData : XMLRepresentable
Undocumented
-
The key of the keyed data.
Declaration
Swift
public var key: String?
-
The value of the keyed data.
Declaration
Swift
public var value: String
-
Initializes a new keyed data value.
Declaration
Swift
public init(key: String? = nil, value: String)
Parameters
key
The key of the keyed data.
value
The value of the keyed data.