forked from kernle32dll/nullable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
int.go
72 lines (58 loc) · 1.52 KB
/
int.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
63
64
65
66
67
68
69
70
71
72
// Code generated by go generate; DO NOT EDIT.
// This file was generated by scripts/models/gen_nullable_types.go
package nullable
import (
"bytes"
"encoding/json"
"github.com/go-openapi/strfmt"
)
// Int represents a int that may be null or not
// present in json at all.
type Int struct {
Present bool // Present is true if key is present in json
Valid bool // Valid is true if value is not null and valid int
Value int
}
// Returns nil if not present or valid. Otherwise it will
// return a pointer to the value.
func (i *Int) Ptr() *int {
if i.Present && i.Valid {
return &i.Value
}
return nil
}
// UnmarshalJSON implements json.Marshaler interface.
func (i *Int) UnmarshalJSON(data []byte) error {
i.Present = true
if bytes.Equal(data, null) {
return nil
}
if err := json.Unmarshal(data, &i.Value); err != nil {
return err
}
i.Valid = true
return nil
}
// Validate implements runtime.Validateable interface for go-swagger generation.
func (i *Int) Validate(formats strfmt.Registry) error {
return nil
}
// IntSlice represents a []int that may be null or not
// present in json at all.
type IntSlice struct {
Present bool // Present is true if key is present in json
Valid bool // Valid is true if value is not null
Value []int
}
// UnmarshalJSON implements json.Marshaler interface.
func (i *IntSlice) UnmarshalJSON(data []byte) error {
i.Present = true
if bytes.Equal(data, null) {
return nil
}
if err := json.Unmarshal(data, &i.Value); err != nil {
return err
}
i.Valid = true
return nil
}