-
Notifications
You must be signed in to change notification settings - Fork 13
/
wfmbuintradaydataupdatetopicbuintradayresult.go
159 lines (110 loc) · 4.71 KB
/
wfmbuintradaydataupdatetopicbuintradayresult.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Wfmbuintradaydataupdatetopicbuintradayresult
type Wfmbuintradaydataupdatetopicbuintradayresult struct {
// StartDate
StartDate *time.Time `json:"startDate,omitempty"`
// EndDate
EndDate *time.Time `json:"endDate,omitempty"`
// IntervalLengthMinutes
IntervalLengthMinutes *int `json:"intervalLengthMinutes,omitempty"`
// IntradayDataGroupings
IntradayDataGroupings *[]Wfmbuintradaydataupdatetopicbuintradaydatagroup `json:"intradayDataGroupings,omitempty"`
// Categories
Categories *[]string `json:"categories,omitempty"`
// NoDataReason
NoDataReason *string `json:"noDataReason,omitempty"`
// Schedule
Schedule *Wfmbuintradaydataupdatetopicbuschedulereference `json:"schedule,omitempty"`
// ShortTermForecast
ShortTermForecast *Wfmbuintradaydataupdatetopicbushorttermforecastreference `json:"shortTermForecast,omitempty"`
}
func (o *Wfmbuintradaydataupdatetopicbuintradayresult) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Wfmbuintradaydataupdatetopicbuintradayresult
StartDate := new(string)
if o.StartDate != nil {
*StartDate = timeutil.Strftime(o.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
EndDate := new(string)
if o.EndDate != nil {
*EndDate = timeutil.Strftime(o.EndDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
EndDate = nil
}
return json.Marshal(&struct {
StartDate *string `json:"startDate,omitempty"`
EndDate *string `json:"endDate,omitempty"`
IntervalLengthMinutes *int `json:"intervalLengthMinutes,omitempty"`
IntradayDataGroupings *[]Wfmbuintradaydataupdatetopicbuintradaydatagroup `json:"intradayDataGroupings,omitempty"`
Categories *[]string `json:"categories,omitempty"`
NoDataReason *string `json:"noDataReason,omitempty"`
Schedule *Wfmbuintradaydataupdatetopicbuschedulereference `json:"schedule,omitempty"`
ShortTermForecast *Wfmbuintradaydataupdatetopicbushorttermforecastreference `json:"shortTermForecast,omitempty"`
*Alias
}{
StartDate: StartDate,
EndDate: EndDate,
IntervalLengthMinutes: o.IntervalLengthMinutes,
IntradayDataGroupings: o.IntradayDataGroupings,
Categories: o.Categories,
NoDataReason: o.NoDataReason,
Schedule: o.Schedule,
ShortTermForecast: o.ShortTermForecast,
Alias: (*Alias)(o),
})
}
func (o *Wfmbuintradaydataupdatetopicbuintradayresult) UnmarshalJSON(b []byte) error {
var WfmbuintradaydataupdatetopicbuintradayresultMap map[string]interface{}
err := json.Unmarshal(b, &WfmbuintradaydataupdatetopicbuintradayresultMap)
if err != nil {
return err
}
if startDateString, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["startDate"].(string); ok {
StartDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", startDateString)
o.StartDate = &StartDate
}
if endDateString, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["endDate"].(string); ok {
EndDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", endDateString)
o.EndDate = &EndDate
}
if IntervalLengthMinutes, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["intervalLengthMinutes"].(float64); ok {
IntervalLengthMinutesInt := int(IntervalLengthMinutes)
o.IntervalLengthMinutes = &IntervalLengthMinutesInt
}
if IntradayDataGroupings, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["intradayDataGroupings"].([]interface{}); ok {
IntradayDataGroupingsString, _ := json.Marshal(IntradayDataGroupings)
json.Unmarshal(IntradayDataGroupingsString, &o.IntradayDataGroupings)
}
if Categories, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["categories"].([]interface{}); ok {
CategoriesString, _ := json.Marshal(Categories)
json.Unmarshal(CategoriesString, &o.Categories)
}
if NoDataReason, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["noDataReason"].(string); ok {
o.NoDataReason = &NoDataReason
}
if Schedule, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["schedule"].(map[string]interface{}); ok {
ScheduleString, _ := json.Marshal(Schedule)
json.Unmarshal(ScheduleString, &o.Schedule)
}
if ShortTermForecast, ok := WfmbuintradaydataupdatetopicbuintradayresultMap["shortTermForecast"].(map[string]interface{}); ok {
ShortTermForecastString, _ := json.Marshal(ShortTermForecast)
json.Unmarshal(ShortTermForecastString, &o.ShortTermForecast)
}
return nil
}
// String returns a JSON representation of the model
func (o *Wfmbuintradaydataupdatetopicbuintradayresult) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}