-
Notifications
You must be signed in to change notification settings - Fork 6
/
section_create.go
190 lines (145 loc) · 4.5 KB
/
section_create.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// Code generated; DO NOT EDIT.
package platformclientmodels
import (
"encoding/json"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// SectionCreate Section create
//
// swagger:model Section create.
type SectionCreate struct {
// active, default true
Active bool `json:"active"`
// display order
// Format: int32
DisplayOrder int32 `json:"displayOrder,omitempty"`
// end date
// Required: true
// Format: date-time
EndDate strfmt.DateTime `json:"endDate"`
// section extension
Ext interface{} `json:"ext,omitempty"`
// fix period rotation config, don't allow null when rotation type is FIXED_PERIOD
FixedPeriodRotationConfig *FixedPeriodRotationConfig `json:"fixedPeriodRotationConfig,omitempty"`
// item ids
Items []*SectionItem `json:"items,omitempty"`
// Localization, key language, value localization content
// Required: true
Localizations map[string]Localization `json:"localizations"`
// section name
// Required: true
Name *string `json:"name"`
// rotation type, default is NONE
// Enum: ['CUSTOM', 'FIXED_PERIOD', 'NONE']
RotationType string `json:"rotationType,omitempty"`
// start date
// Required: true
// Format: date-time
StartDate strfmt.DateTime `json:"startDate"`
// view id
ViewID string `json:"viewId,omitempty"`
}
// Validate validates this Section create
func (m *SectionCreate) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateEndDate(formats); err != nil {
res = append(res, err)
}
if err := m.validateName(formats); err != nil {
res = append(res, err)
}
if err := m.validateStartDate(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *SectionCreate) validateEndDate(formats strfmt.Registry) error {
if err := validate.Required("endDate", "body", strfmt.DateTime(m.EndDate)); err != nil {
return err
}
if err := validate.FormatOf("endDate", "body", "date-time", m.EndDate.String(), formats); err != nil {
return err
}
return nil
}
func (m *SectionCreate) validateLocalizations(formats strfmt.Registry) error {
if err := validate.Required("localizations", "body", m.Localizations); err != nil {
return err
}
for k := range m.Localizations {
if err := validate.Required("localizations"+"."+k, "body", m.Localizations[k]); err != nil {
return err
}
if val, ok := m.Localizations[k]; ok {
if err := val.Validate(formats); err != nil {
return err
}
}
}
return nil
}
func (m *SectionCreate) validateName(formats strfmt.Registry) error {
if err := validate.Required("name", "body", m.Name); err != nil {
return err
}
return nil
}
var sectionCreateTypeRotationTypePropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["CUSTOM", "FIXED_PERIOD", "NONE"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
sectionCreateTypeRotationTypePropEnum = append(sectionCreateTypeRotationTypePropEnum, v)
}
}
const (
// SectionCreateRotationTypeCUSTOM captures enum value "CUSTOM"
SectionCreateRotationTypeCUSTOM string = "CUSTOM"
// SectionCreateRotationTypeFIXEDPERIOD captures enum value "FIXED_PERIOD"
SectionCreateRotationTypeFIXEDPERIOD string = "FIXED_PERIOD"
// SectionCreateRotationTypeNONE captures enum value "NONE"
SectionCreateRotationTypeNONE string = "NONE"
)
// prop value enum
func (m *SectionCreate) validateRotationTypeEnum(path, location string, value string) error {
if err := validate.EnumCase(path, location, value, sectionCreateTypeRotationTypePropEnum, true); err != nil {
return err
}
return nil
}
func (m *SectionCreate) validateStartDate(formats strfmt.Registry) error {
if err := validate.Required("startDate", "body", strfmt.DateTime(m.StartDate)); err != nil {
return err
}
if err := validate.FormatOf("startDate", "body", "date-time", m.StartDate.String(), formats); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *SectionCreate) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *SectionCreate) UnmarshalBinary(b []byte) error {
var res SectionCreate
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}