-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.go
More file actions
80 lines (66 loc) · 1.58 KB
/
errors.go
File metadata and controls
80 lines (66 loc) · 1.58 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Code generated by Fern. DO NOT EDIT.
package api
import (
json "encoding/json"
core "github.com/junction-api/junction-go/core"
)
// Bad Request
type BadRequestError struct {
*core.APIError
Body any
}
func (b *BadRequestError) UnmarshalJSON(data []byte) error {
var body any
if err := json.Unmarshal(data, &body); err != nil {
return err
}
b.StatusCode = 400
b.Body = body
return nil
}
func (b *BadRequestError) MarshalJSON() ([]byte, error) {
return json.Marshal(b.Body)
}
func (b *BadRequestError) Unwrap() error {
return b.APIError
}
// No slots found. Not all PSCs support scheduling appointments and some included in your query were filtered out because of this.
type NotFoundError struct {
*core.APIError
Body *NotFoundErrorBody
}
func (n *NotFoundError) UnmarshalJSON(data []byte) error {
var body *NotFoundErrorBody
if err := json.Unmarshal(data, &body); err != nil {
return err
}
n.StatusCode = 404
n.Body = body
return nil
}
func (n *NotFoundError) MarshalJSON() ([]byte, error) {
return json.Marshal(n.Body)
}
func (n *NotFoundError) Unwrap() error {
return n.APIError
}
// Validation Error
type UnprocessableEntityError struct {
*core.APIError
Body *HttpValidationError
}
func (u *UnprocessableEntityError) UnmarshalJSON(data []byte) error {
var body *HttpValidationError
if err := json.Unmarshal(data, &body); err != nil {
return err
}
u.StatusCode = 422
u.Body = body
return nil
}
func (u *UnprocessableEntityError) MarshalJSON() ([]byte, error) {
return json.Marshal(u.Body)
}
func (u *UnprocessableEntityError) Unwrap() error {
return u.APIError
}