Extraction

@objcMembers
final public class Extraction : NSObject
extension Extraction: Decodable

Data model for a document extraction.

  • box

    The extraction’s box. Only available for some extractions.

    Declaration

    Swift

    public let box: Box?
  • The available candidates for this extraction.

    Declaration

    Swift

    public let candidates: String?
  • The extraction’s entity.

    Declaration

    Swift

    public let entity: String
  • The extraction’s value

    Declaration

    Swift

    public var value: String
  • The extraction’s name

    Declaration

    Swift

    public var name: String?
  • Box

    The extraction’s box attributes.

    See more

    Declaration

    Swift

    @objcMembers
    final public class Box : NSObject
    extension Extraction.Box: Decodable
  • A extraction candidate, containing a box, an entity and a its value.

    See more

    Declaration

    Swift

    @objcMembers
    final public class Candidate : NSObject
    extension Extraction.Candidate: Decodable
  • Undocumented

    Declaration

    Swift

    public init(box: Box?, candidates: String?, entity: String, value: String, name: String?)
  • Undocumented

    Declaration

    Swift

    public override func isEqual(_ object: Any?) -> Bool
  • Undocumented

    Declaration

    Swift

    public override var debugDescription: String { get }