FormXData

public struct FormXData : Decodable

FormXData represent a extraction field returned by the `FormXAPIClient.extract(data:completion:)

  • The confidence score of the extracted value

    Declaration

    Swift

    public let confidence: Double?
  • The structure description of the value

    Declaration

    Swift

    public let valueType: String?
  • The reference of extractor

    Declaration

    Swift

    public let extractedBy: String
  • The extracted value

    Declaration

    Swift

    public let value: FormXDataValue
  • Declaration

    Swift

    public init(from decoder: Decoder) throws