class FakeMollie::Fakes::Customer

Attributes

email[RW]
id[RW]
mandates[RW]
name[RW]
subscriptions[RW]

Public Class Methods

new(args = {}) click to toggle source
Calls superclass method FakeMollie::Fakes::Base::new
# File lib/fake_mollie/fakes/customer.rb, line 6
def initialize(args = {})
  super

  @id ||= SecureRandom.hex(10)
  @mandates ||= []
  @subscriptions ||= []
end