-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkScheduleExceptions.go
61 lines (54 loc) · 2.29 KB
/
workScheduleExceptions.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
package wrikego
import (
"fmt"
"net/http"
params "github.com/TGoers-FNSB/WrikeGo/parameters"
resp "github.com/TGoers-FNSB/WrikeGo/response"
query "github.com/TGoers-FNSB/go-querystring-wrike/query"
)
func QueryWorkScheduleExceptionsById(config Config, pathId string) (resp.WorkScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedule_exclusions/%s", pathId)
response, httpResponse, err := Get(config, path, nil)
ErrorCheck(err)
json, err := resp.WorkScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryWorkScheduleExceptionsByWorkSchedule(config Config, params params.QueryWorkScheduleExceptions, pathId string) (resp.WorkScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedules/%s/workschedule_exclusions", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.WorkScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func CreateWorkScheduleExceptionsByWorkSchedule(config Config, params params.CreateWorkScheduleExceptions, pathId string) (resp.WorkScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedules/%s/workschedule_exclusions", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Post(config, path, body)
ErrorCheck(err)
json, err := resp.WorkScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func ModifyWorkScheduleExceptionsById(config Config, params params.ModifyWorkScheduleExceptions, pathId string) (resp.WorkScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedules/%s/workschedule_exclusions", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.WorkScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func DeleteWorkScheduleExceptionsById(config Config, pathId string) (resp.WorkScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedules/%s/workschedule_exclusions", pathId)
response, httpResponse, err := Delete(config, path, nil)
ErrorCheck(err)
json, err := resp.WorkScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}