class EwayRapid::Enums::BeagleVerifyStatus
Constants
- ATTEMPTED
- FAILED
- NOT_VERIFIED
- VERIFIED
Public Class Methods
calculate_beagle_status(index)
click to toggle source
@param [Integer] index @return [String]
# File lib/eway_rapid/models/enums.rb, line 12 def self.calculate_beagle_status(index) case index when 0 then NOT_VERIFIED when 1 then ATTEMPTED when 2 then VERIFIED when 3 then FAILED else nil end end