class Mindee::Product::FR::IdCard::IdCardV1Page

Carte Nationale d’Identité API version 1.1 page data.

def initialize(prediction)

Parameters:
  • prediction (Hash) --
def initialize(prediction)
  super
  @prediction = if prediction['prediction'].empty?
                  nil
                else
                  IdCardV1PagePrediction.new(
                    prediction['prediction'],
                    prediction['id']
                  )
                end
end