module Wayforpay::Constants

Constants

ACCEPT_INVOICE_PAYMENT_ATTRS
ACCEPT_INVOICE_PAYMENT_ENCRYPT_FIELDS
CREATE_INVOICE_ATTRS
CREATE_INVOICE_ENCRYPT_FIELDS
GET_CLIENT_ATTRS
GET_CLIENT_ENCRYPT_FIELDS
HOLD_ATTRS
HOLD_ENCRYPT_FIELDS
REFUND_ATTRS
REFUND_ENCRYPT_FIELDS
SETTLE_ATTRS
SETTLE_ENCRYPT_FIELDS
URL
VERIFY_ATTRS
VERIFY_ENCRYPT_FIELDS

Public Class Methods

accept_invoice_payment_params() click to toggle source
# File lib/wayforpay/constants.rb, line 84
def self.accept_invoice_payment_params
  ACCEPT_INVOICE_PAYMENT_ATTRS
end
create_invoice_params() click to toggle source
# File lib/wayforpay/constants.rb, line 77
def self.create_invoice_params
  CREATE_INVOICE_ATTRS.merge(
    merchantAccount: Wayforpay.merchant_account,
    merchantDomainName: Wayforpay.merchant_domain_name
  )
end
get_client_params() click to toggle source
# File lib/wayforpay/constants.rb, line 88
def self.get_client_params
  GET_CLIENT_ATTRS.merge(merchantAccount: Wayforpay.merchant_account)
end
hold_params() click to toggle source
# File lib/wayforpay/constants.rb, line 55
def self.hold_params
  HOLD_ATTRS.merge(
    merchantAccount: Wayforpay.merchant_account,
    merchantDomainName: Wayforpay.merchant_domain_name
  )
end
refund_params() click to toggle source
# File lib/wayforpay/constants.rb, line 62
def self.refund_params
  REFUND_ATTRS.merge(merchantAccount: Wayforpay.merchant_account)
end
settle_params() click to toggle source
# File lib/wayforpay/constants.rb, line 66
def self.settle_params
  SETTLE_ATTRS.merge(merchantAccount: Wayforpay.merchant_account)
end
verify_params() click to toggle source
# File lib/wayforpay/constants.rb, line 70
def self.verify_params
  VERIFY_ATTRS.merge(
    merchantAccount: Wayforpay.merchant_account,
    merchantDomainName: Wayforpay.merchant_domain_name
  )
end