This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
module PaymentClient # :nodoc: all | |
ACH = :ach | |
CLOUD9 = :cloud9 | |
NEW_STRIPE = :new_stripe | |
ROYALTY = :royalty | |
STRIPE = :stripe | |
USA = 'US' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Pos | |
class Cloud9Audit # rubocop:disable Metrics/ClassLength | |
BUCKET_NAME = 'mytime-cloud9' | |
TRANS_TYPE_AUTH = 'Auth' | |
TRANS_TYPE_REFUND = 'Refund' | |
TRANS_TYPE_SALE = 'Sale' | |
TRANS_TYPE_VERIFY = 'Verify' | |
KEY_MAP = { | |
missing: 'Not Found', | |
void: 'Transaction Voided', |