module CuentaDigital

Constants

CUOPON_GENERATION_URL
CURRENCIES
URL
URL_EXP_PRODUCTION
URL_EXP_SANDBOX
VALID_EMAIL_REGEX
VERSION

Public Class Methods

sandbox_uri_payment_export() click to toggle source
# File lib/cuenta_digital.rb, line 37
def self.sandbox_uri_payment_export
  URI.parse(URL_EXP_SANDBOX)
end
uri_coupon_generation() click to toggle source
# File lib/cuenta_digital.rb, line 33
def self.uri_coupon_generation
  URI.parse(CUOPON_GENERATION_URL)
end
uri_payment_export() click to toggle source
# File lib/cuenta_digital.rb, line 41
def self.uri_payment_export
  URI.parse(URL_EXP_PRODUCTION)
end