fadendaten/six_saferpay

View on GitHub
lib/six_saferpay/api/six_transaction/responses/multipart_finalize_response.rb

Summary

Maintainability
A
35 mins
Test Coverage
module SixSaferpay
  module SixTransaction
    class MultipartFinalizeResponse

      attr_accessor(:response_header)

      def initialize(response_header:)
        @response_header = SixSaferpay::ResponseHeader.new(**response_header.to_h) if response_header
      end

      def to_hash
        hash = Hash.new
        hash.merge!(response_header: @response_header.to_h) if @response_header
        hash
      end
      alias_method :to_h, :to_hash

    end
  end
end