-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhris.go
28 lines (24 loc) · 848 Bytes
/
hris.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package sdkgo
type Hris struct {
Employees *Employees
Companies *ApideckCompanies
Departments *ApideckDepartments
Payrolls *Payrolls
EmployeePayrolls *EmployeePayrolls
EmployeeSchedules *EmployeeSchedules
TimeOffRequests *TimeOffRequests
sdkConfiguration sdkConfiguration
}
func newHris(sdkConfig sdkConfiguration) *Hris {
return &Hris{
sdkConfiguration: sdkConfig,
Employees: newEmployees(sdkConfig),
Companies: newApideckCompanies(sdkConfig),
Departments: newApideckDepartments(sdkConfig),
Payrolls: newPayrolls(sdkConfig),
EmployeePayrolls: newEmployeePayrolls(sdkConfig),
EmployeeSchedules: newEmployeeSchedules(sdkConfig),
TimeOffRequests: newTimeOffRequests(sdkConfig),
}
}