class Mindee::Product::FR::HealthCard::HealthCardV1Page

Health Card API version 1.0 page data.

def initialize(prediction)

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