lib/genesis_ruby/api/constants/transactions/parameters/mpi_protocol_versions.rb



# frozen_string_literal: true

module GenesisRuby
  module Api
    module Constants
      module Transactions
        module Parameters
          # Mpi Protocol Versions allowed values
          class MpiProtocolVersions

            extend Mixins::Constants::Common

            # 3DSv1, Type of Protocol Version - 1
            PROTOCOL_VERSION_1 = 1

            # 3DSv2, Type of Protocol Version - 2
            PROTOCOL_VERSION_2 = 2

          end
        end
      end
    end
  end
end