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



803
804
805
806
807
808
809
# File 'lib/zaala/api/types.rb', line 803

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