-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemployer.go
31 lines (30 loc) · 928 Bytes
/
employer.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
29
30
31
package checkr
// Employer ...
// https://docs.checkr.com/#employer
type Employer struct {
ID string `json:"id"`
Object string `json:"object"`
URI string `json:"uri"`
CandidateID string `json:"candidate_id"`
Name string `json:"name"`
Position string `json:"position"`
Salary int `json:"salary"`
ContractType string `json:"contract_type"`
DoNotContact bool `json:"do_not_contact"`
StartDate string `json:"start_date"`
EmployerURL string `json:"employer_url"`
EndDate string `json:"end_date"`
Address struct {
Street string `json:"street"`
City string `json:"city"`
State string `json:"state"`
Zipcode string `json:"zipcode"`
Country string `json:"country"`
} `json:"address"`
Manager struct {
Email string `json:"email"`
Name string `json:"name"`
Phone string `json:"phone"`
Title string `json:"title"`
} `json:"manager"`
}