AnalysisResult

@objcMembers
public class AnalysisResult : NSObject

Undocumented

  • Images processed in the analysis.

    Declaration

    Swift

    public let images: [UIImage]
  • Specific extractions obtained in the analysis.

    Besides the list of extractions that can be found here, it can also return the epsPaymentQRCodeUrl extraction, obtained from a EPS QR code.

    Declaration

    Swift

    public let extractions: [String : Extraction]
  • Line item compound extractions obtained in the analysis.

    Declaration

    Swift

    public let lineItems: [[Extraction]]?
  • The analyzed Gini Bank API document.

    It returns nil when extractions were retrieved without using the Gini Bank API. For example when the extractions came from an EPS QR code.

    Declaration

    Swift

    public let document: Document?
  • Undocumented

    Declaration

    Swift

    public init(extractions: [String : Extraction], lineItems: [[Extraction]]? = nil, images: [UIImage], document: Document? = nil)