Class: Mindee::Product::Invoice::InvoiceV4
- Inherits:
-
Mindee::Parsing::Common::Inference
- Object
- Mindee::Parsing::Common::Inference
- Mindee::Product::Invoice::InvoiceV4
- Defined in:
- lib/mindee/product/invoice/invoice_v4.rb
Overview
Invoice API version 4 inference prediction.
Class Attribute Summary collapse
-
.endpoint_name ⇒ String
readonly
Name of the endpoint for this product.
-
.endpoint_version ⇒ String
readonly
Version for this product.
Attributes inherited from Mindee::Parsing::Common::Inference
#is_rotation_applied, #pages, #prediction, #product
Instance Method Summary collapse
-
#initialize(prediction) ⇒ InvoiceV4
constructor
A new instance of InvoiceV4.
Methods inherited from Mindee::Parsing::Common::Inference
Constructor Details
#initialize(prediction) ⇒ InvoiceV4
Returns a new instance of InvoiceV4.
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_name ⇒ String (readonly)
Name of the endpoint for this product.
31 32 33 |
# File 'lib/mindee/product/invoice/invoice_v4.rb', line 31 def endpoint_name @endpoint_name end |
.endpoint_version ⇒ String (readonly)
Version for this product.
34 35 36 |
# File 'lib/mindee/product/invoice/invoice_v4.rb', line 34 def endpoint_version @endpoint_version end |