class Gateway::CreditCardTransactionOptions

Attributes

CaptureDelayInMinutes[RW]
CurrencyIso[RW]
ExtendedLimitCode[RW]
ExtendedLimitEnabled[RW]
IataAmountInCents[RW]
InterestRate[RW]
MerchantCategoryCode[RW]
PaymentMethodCode[RW]
SoftDescriptorText[RW]

Public Instance Methods

to_json() click to toggle source
# File lib/gateway/CreditCardTransaction/credit_card_transaction_options.rb, line 23
def to_json
  hash = {}
  instance_variables.each { |var| hash[var.to_s.delete('@')] = instance_variable_get(var) }
  hash
end