Class: FinchAPI::Resources::Payroll

Inherits:
Object
  • Object
show all
Defined in:
lib/finch-api/resources/payroll.rb,
lib/finch-api/resources/payroll/pay_groups.rb

Defined Under Namespace

Classes: PayGroups

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:) ⇒ Payroll

Returns a new instance of Payroll.

Parameters:



10
11
12
13
# File 'lib/finch-api/resources/payroll.rb', line 10

def initialize(client:)
  @client = client
  @pay_groups = FinchAPI::Resources::Payroll::PayGroups.new(client: client)
end

Instance Attribute Details

#pay_groupsFinchAPI::Resources::Payroll::PayGroups (readonly)



7
8
9
# File 'lib/finch-api/resources/payroll.rb', line 7

def pay_groups
  @pay_groups
end