Option
public struct Option : SendableA struct representing an option.
Parameters
| 
                          label
                           | The label of the option. | 
| 
                          value
                           | The value of the option. | 
- 
                  
                  DeclarationSwift public let label: String
- 
                  
                  DeclarationSwift public let value: String
- 
                  
                  Initializes an Optionstruct with the given label and value.DeclarationSwift public init(label: String, value: String)
- 
                  
                  Parses the input dictionary to return a list of options. DeclarationSwift public static func parseOptions(from input: [String : Any]) -> [Option]ParametersinputA dictionary simulating the JSON object. Return ValueAn array of Optionstructs.
 View on GitHub
            View on GitHub
          