-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserScheduleExceptions.go
61 lines (54 loc) · 2.12 KB
/
userScheduleExceptions.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 QueryUserScheduleExceptions(config Config, params params.QueryUserScheduleExceptions) (resp.UserScheduleExceptions, *http.Response) {
path := "/user_schedule_exclusions"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.UserScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryUserScheduleExceptionsById(config Config, pathId string) (resp.UserScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/user_schedule_exclusions/%s", pathId)
response, httpResponse, err := Get(config, path, nil)
ErrorCheck(err)
json, err := resp.UserScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func CreateUserScheduleExceptions(config Config, params params.CreateUserScheduleExceptions) (resp.UserScheduleExceptions, *http.Response) {
path := "/user_schedule_exclusions"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Post(config, path, body)
ErrorCheck(err)
json, err := resp.UserScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func ModifyUserScheduleExceptionsById(config Config, params params.ModifyUserScheduleExceptions) (resp.UserScheduleExceptions, *http.Response) {
path := "/user_schedule_exclusions"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.UserScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func DeleteUserScheduleExceptionsById(config Config, pathId string) (resp.UserScheduleExceptions, *http.Response) {
path := fmt.Sprintf("/workschedules/%s/workschedule_exclusions", pathId)
response, httpResponse, err := Delete(config, path, nil)
ErrorCheck(err)
json, err := resp.UserScheduleExceptionsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}