-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathats.go
More file actions
29 lines (24 loc) · 782 Bytes
/
Copy pathats.go
File metadata and controls
29 lines (24 loc) · 782 Bytes
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
29
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package sdkgo
import (
"github.com/apideck-libraries/sdk-go/internal/config"
"github.com/apideck-libraries/sdk-go/internal/hooks"
)
type Ats struct {
Jobs *Jobs
Applicants *Applicants
Applications *Applications
rootSDK *Apideck
sdkConfiguration config.SDKConfiguration
hooks *hooks.Hooks
}
func newAts(rootSDK *Apideck, sdkConfig config.SDKConfiguration, hooks *hooks.Hooks) *Ats {
return &Ats{
rootSDK: rootSDK,
sdkConfiguration: sdkConfig,
hooks: hooks,
Jobs: newJobs(rootSDK, sdkConfig, hooks),
Applicants: newApplicants(rootSDK, sdkConfig, hooks),
Applications: newApplications(rootSDK, sdkConfig, hooks),
}
}