Metadatum
public struct Metadatum : XMLRepresentable
Undocumented
-
The array value of the metadatum.
Declaration
Swift
public var array: [String]? { get set }
-
The key of the metadatum.
Declaration
Swift
public var key: String
-
The value of the metadatum.
Declaration
Swift
public var value: String?
-
A Boolean value indicating whether the metadatum is editable.
Declaration
Swift
public var isEditable: Bool { get set }
-
The type of the metadatum.
Declaration
Swift
public var type: MetadatumType?
-
The display name of the metadatum.
Declaration
Swift
public var displayName: String?
-
The description of the metadatum.
Declaration
Swift
public var description: String?
-
The source of the metadatum.
Declaration
Swift
public var source: String?
-
Initializes a new metadatum.
Declaration
Swift
public init(key: String, value: String? = nil)
Parameters
key
The key of the metadatum.
value
The value of the metadatum.