Class: Mindee::Product::Invoice::InvoiceV4

Inherits:
Mindee::Parsing::Common::Inference show all
Defined in:
lib/mindee/product/invoice/invoice_v4.rb

Overview

Invoice API version 4 inference prediction.

Class Attribute Summary collapse

Attributes inherited from Mindee::Parsing::Common::Inference

#is_rotation_applied, #pages, #prediction, #product

Instance Method Summary collapse

Methods inherited from Mindee::Parsing::Common::Inference

#to_s

Constructor Details

#initialize(prediction) ⇒ InvoiceV4

Returns a new instance of InvoiceV4.

Parameters:

  • prediction (Hash)


17
18
19
20
21
22
23
24
25
26
# File 'lib/mindee/product/invoice/invoice_v4.rb', line 17

def initialize(prediction)
  super
  @prediction = InvoiceV4Document.new(prediction['prediction'], nil)
  @pages = []
  prediction['pages'].each do |page|
    if page.key?('prediction') && !page['prediction'].nil? && !page['prediction'].empty?
      @pages.push(InvoiceV4Page.new(page))
    end
  end
end

Class Attribute Details

.endpoint_nameString (readonly)

Name of the endpoint for this product.

Returns:

  • (String)


31
32
33
# File 'lib/mindee/product/invoice/invoice_v4.rb', line 31

def endpoint_name
  @endpoint_name
end

.endpoint_versionString (readonly)

Version for this product.

Returns:

  • (String)


34
35
36
# File 'lib/mindee/product/invoice/invoice_v4.rb', line 34

def endpoint_version
  @endpoint_version
end