class FortuneTeller::SavingsPlans::Percent

Represents a savings plan based on percent of salary

Attributes

account_id[R]
match[R]
percent[R]

Public Class Methods

new(account_id:, percent:, match: 0) click to toggle source
# File lib/fortuneteller/savings_plans.rb, line 6
def initialize(account_id:, percent:, match: 0)
  @account_id = account_id
  @percent = percent
  @match = match
end