Sha256: edb81383f7b3328f95ac69edd5af95387c89bec96b25c3c3d42ee8be6049279d

Contents?: true

Size: 264 Bytes

Versions: 2

Compression:

Stored size: 264 Bytes

Contents

module VaultedBilling
  class Customer
    attr_accessor :id
    attr_accessor :email

    def initialize(attributes = {})
      attributes = HashWithIndifferentAccess.new(attributes)
      @id = attributes[:id]
      @email = attributes[:email]
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vaulted_billing-0.0.1 lib/vaulted_billing/customer.rb
vaulted_billing-0.0.0 lib/vaulted_billing/customer.rb