-
The UUID of the field collector.
Declaration
Swift
public var id: String { get } -
The key of the label collector.
Declaration
Swift
public private(set) var key: String { get } -
The label content.
Declaration
Swift
public private(set) var content: String { get } -
Initializes a new instance of
LabelCollector.Declaration
Swift
public required init(with json: [String : Any])Parameters
jsonThe json to initialize from.
-
Initializes the
LabelCollectorwith the given value. TheLabelCollectordoes not hold any value.Declaration
Swift
public func initialize(with value: Any)Parameters
inputThe value to initialize the collector with.
-
Function returning the
Payloadof the LabelCollector. This is a function that returnsNeveras a nonreturning function as the LabelCollector has no payload to return.Declaration
Swift
public func payload() -> Never?
View on GitHub