-
Notifications
You must be signed in to change notification settings - Fork 13
/
streetaddress.go
135 lines (90 loc) · 2.39 KB
/
streetaddress.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Streetaddress
type Streetaddress struct {
// Country - 2 Letter Country code, like US or GB
Country *string `json:"country,omitempty"`
// A1 - State or Province
A1 *string `json:"A1,omitempty"`
// A3 - City or township
A3 *string `json:"A3,omitempty"`
// RD - Number and street
RD *string `json:"RD,omitempty"`
// HNO - House Number
HNO *string `json:"HNO,omitempty"`
// LOC - extra location info like suite 300
LOC *string `json:"LOC,omitempty"`
// NAM - Name of the customer
NAM *string `json:"NAM,omitempty"`
// PC - Postal code
PC *string `json:"PC,omitempty"`
}
func (o *Streetaddress) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Streetaddress
return json.Marshal(&struct {
Country *string `json:"country,omitempty"`
A1 *string `json:"A1,omitempty"`
A3 *string `json:"A3,omitempty"`
RD *string `json:"RD,omitempty"`
HNO *string `json:"HNO,omitempty"`
LOC *string `json:"LOC,omitempty"`
NAM *string `json:"NAM,omitempty"`
PC *string `json:"PC,omitempty"`
*Alias
}{
Country: o.Country,
A1: o.A1,
A3: o.A3,
RD: o.RD,
HNO: o.HNO,
LOC: o.LOC,
NAM: o.NAM,
PC: o.PC,
Alias: (*Alias)(o),
})
}
func (o *Streetaddress) UnmarshalJSON(b []byte) error {
var StreetaddressMap map[string]interface{}
err := json.Unmarshal(b, &StreetaddressMap)
if err != nil {
return err
}
if Country, ok := StreetaddressMap["country"].(string); ok {
o.Country = &Country
}
if A1, ok := StreetaddressMap["A1"].(string); ok {
o.A1 = &A1
}
if A3, ok := StreetaddressMap["A3"].(string); ok {
o.A3 = &A3
}
if RD, ok := StreetaddressMap["RD"].(string); ok {
o.RD = &RD
}
if HNO, ok := StreetaddressMap["HNO"].(string); ok {
o.HNO = &HNO
}
if LOC, ok := StreetaddressMap["LOC"].(string); ok {
o.LOC = &LOC
}
if NAM, ok := StreetaddressMap["NAM"].(string); ok {
o.NAM = &NAM
}
if PC, ok := StreetaddressMap["PC"].(string); ok {
o.PC = &PC
}
return nil
}
// String returns a JSON representation of the model
func (o *Streetaddress) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}