class Payments::PaymentMethod

Attributes

description[R]
payment_method[R]
payment_method_type[R]

Public Class Methods

new(options={}) click to toggle source
# File lib/Payments.rb, line 37
def initialize(options={})
  @payment_method_type = get_arg(options, 'payment_method_type')
  @payment_method = get_arg(options, 'payment_method')
  @description = get_arg(options, 'description')
end