class Postmen::PaymentMethodAccount

Attributes

account_number[R]
country[R]
postal_code[R]
type[R]

Public Class Methods

new(options) click to toggle source
# File lib/postmen/payment_method_account.rb, line 10
def initialize(options)
  @type = options[:type]
  @account_number = options[:account_number]
  @postal_code = options[:postal_code]
  @country = options[:country]
end