Sha256: db4b44a15b66653432b9aabb9f648ce214e69b66eca94a85d0f980c14932a8c3

Contents?: true

Size: 421 Bytes

Versions: 1

Compression:

Stored size: 421 Bytes

Contents

require_relative '../../util/enum'

module MangoModel

  # Secure modes enumeration
  class SecureMode
    extend Enum

    # Automatic activation of the Secure Mode, when transaction
    # is higher than 50 EUR or when MangoPay detects there is a higher risk
    DEFAULT = value 'DEFAULT'

    # Force activation of the Secure Mode for a transaction
    FORCE = value 'FORCE'

    NO_CHOICE = value 'NO_CHOICE'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mangopay-v4-4.1.0 lib/mangopay/model/enum/secure_mode.rb