-
Notifications
You must be signed in to change notification settings - Fork 0
/
leave_request.go
62 lines (50 loc) · 1.61 KB
/
leave_request.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package employmenthero
import (
"context"
"fmt"
"net/http"
)
type LeaveRequestListData struct {
Items []LeaveRequest `json:"items"`
ListResponse
}
type LeaveRequestListResponse struct {
Data LeaveRequestListData `json:"data"`
}
// Get returns a list of [LeaveRequest] resources
//
// Example:
//
// response, err := c.ListLeaveRequests(context.TODO(), "90a34ef1-50e4-4930-a9d6-xxxx", ListParams{})
// leaveRequests := response.Data.Items
func (c *Client) ListLeaveRequests(ctx context.Context, oid string, ep ListParams) (*LeaveRequestListResponse, error) {
req, err := c.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/api/v1/organisations/%s/leave_requests", c.APIBase, oid), nil)
if err != nil {
return nil, err
}
q := req.URL.Query()
q.Add("page_index", ep.PageIndex)
q.Add("item_per_page", ep.ItemPerPage)
req.URL.RawQuery = q.Encode()
response := &LeaveRequestListResponse{}
err = c.SendWithAuth(req, response)
return response, err
}
type LeaveRequestResponse struct {
Data LeaveRequest `json:"data"`
}
// Get returns the details of one [LeaveRequest] resource
//
// Example:
//
// response, err := c.GetLeaveRequest(context.TODO(), "90a34ef1-50e4-4930-a9d6-xxxx", "90a34ef1-50e4-4930-a9d6-yyyy")
// leaveRequest := response.Data
func (c *Client) GetLeaveRequest(ctx context.Context, oid string, lid string) (*LeaveRequestResponse, error) {
req, err := c.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/api/v1/organisations/%s/leave_requests/%s", c.APIBase, oid, lid), nil)
if err != nil {
return nil, err
}
response := &LeaveRequestResponse{}
err = c.SendWithAuth(req, response)
return response, err
}