Class: Zaala::API::VerifyRequest

Inherits:
Dry::Struct
  • Object
show all
Defined in:
lib/zaala/api/types.rb

Overview

The VerifyRequest class represents the request parameter of the Verify service call. It contains all information needed to verify an authorization with an MTAN.

Instance Method Summary collapse

Instance Method Details

#to_messageObject



800
801
802
803
804
805
806
# File 'lib/zaala/api/types.rb', line 800

def to_message
  {
    identifier: identifier.to_message,
    additionalData: additional_data.to_message,
    verificationCode: verification_code
  }
end