class Mindee::Product::FR::BankAccountDetails::BankAccountDetailsV2Page

Bank Account Details API version 2.0 page data.

def initialize(prediction)

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