SingleValueCollector
open class SingleValueCollector : FieldCollector<String>, @unchecked SendableA class representing a single value collector,
Inheriting from FieldCollector and conforming to Collector.
- 
                  
                  The single value to collect. DeclarationSwift public var value: String
- 
                  
                  Initializes the single value collector with the given input. DeclarationSwift public required init(with json: [String : Any])ParametersjsonA dictionary representing the JSON element to parse. 
- 
                  
                  Initializes the SingleValueCollectorwith the given value.DeclarationSwift public override func initialize(with value: Any)ParametersvalueThe value to initialize the collector with. 
- 
                  
                  DeclarationSwift public override func payload() -> String?
 View on GitHub
            View on GitHub
          