class Mindee::Product::IND::IndianPassport::IndianPassportV1Page

Passport - India API version 1.2 page data.

def initialize(prediction)

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