-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_availability.go
290 lines (242 loc) · 7.37 KB
/
model_availability.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*
YASM (Yet Another Skill Management) API
This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API.
API version: 1.46.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package client
import (
"encoding/json"
)
// checks if the Availability type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &Availability{}
// Availability struct for Availability
type Availability struct {
NamedDomainModel
Startdate string `json:"startdate"`
Enddate *string `json:"enddate,omitempty"`
ObjectType *string `json:"objectType,omitempty"`
WorkHours float32 `json:"workHours"`
PlannedHours float32 `json:"plannedHours"`
Descriptions []string `json:"descriptions,omitempty"`
}
// NewAvailability instantiates a new Availability object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewAvailability(startdate string, workHours float32, plannedHours float32, id string, name string) *Availability {
this := Availability{}
this.Id = id
this.Name = name
this.Startdate = startdate
this.WorkHours = workHours
this.PlannedHours = plannedHours
return &this
}
// NewAvailabilityWithDefaults instantiates a new Availability object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewAvailabilityWithDefaults() *Availability {
this := Availability{}
return &this
}
// GetStartdate returns the Startdate field value
func (o *Availability) GetStartdate() string {
if o == nil {
var ret string
return ret
}
return o.Startdate
}
// GetStartdateOk returns a tuple with the Startdate field value
// and a boolean to check if the value has been set.
func (o *Availability) GetStartdateOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Startdate, true
}
// SetStartdate sets field value
func (o *Availability) SetStartdate(v string) {
o.Startdate = v
}
// GetEnddate returns the Enddate field value if set, zero value otherwise.
func (o *Availability) GetEnddate() string {
if o == nil || IsNil(o.Enddate) {
var ret string
return ret
}
return *o.Enddate
}
// GetEnddateOk returns a tuple with the Enddate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Availability) GetEnddateOk() (*string, bool) {
if o == nil || IsNil(o.Enddate) {
return nil, false
}
return o.Enddate, true
}
// HasEnddate returns a boolean if a field has been set.
func (o *Availability) HasEnddate() bool {
if o != nil && !IsNil(o.Enddate) {
return true
}
return false
}
// SetEnddate gets a reference to the given string and assigns it to the Enddate field.
func (o *Availability) SetEnddate(v string) {
o.Enddate = &v
}
// GetObjectType returns the ObjectType field value if set, zero value otherwise.
func (o *Availability) GetObjectType() string {
if o == nil || IsNil(o.ObjectType) {
var ret string
return ret
}
return *o.ObjectType
}
// GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Availability) GetObjectTypeOk() (*string, bool) {
if o == nil || IsNil(o.ObjectType) {
return nil, false
}
return o.ObjectType, true
}
// HasObjectType returns a boolean if a field has been set.
func (o *Availability) HasObjectType() bool {
if o != nil && !IsNil(o.ObjectType) {
return true
}
return false
}
// SetObjectType gets a reference to the given string and assigns it to the ObjectType field.
func (o *Availability) SetObjectType(v string) {
o.ObjectType = &v
}
// GetWorkHours returns the WorkHours field value
func (o *Availability) GetWorkHours() float32 {
if o == nil {
var ret float32
return ret
}
return o.WorkHours
}
// GetWorkHoursOk returns a tuple with the WorkHours field value
// and a boolean to check if the value has been set.
func (o *Availability) GetWorkHoursOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.WorkHours, true
}
// SetWorkHours sets field value
func (o *Availability) SetWorkHours(v float32) {
o.WorkHours = v
}
// GetPlannedHours returns the PlannedHours field value
func (o *Availability) GetPlannedHours() float32 {
if o == nil {
var ret float32
return ret
}
return o.PlannedHours
}
// GetPlannedHoursOk returns a tuple with the PlannedHours field value
// and a boolean to check if the value has been set.
func (o *Availability) GetPlannedHoursOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.PlannedHours, true
}
// SetPlannedHours sets field value
func (o *Availability) SetPlannedHours(v float32) {
o.PlannedHours = v
}
// GetDescriptions returns the Descriptions field value if set, zero value otherwise.
func (o *Availability) GetDescriptions() []string {
if o == nil || IsNil(o.Descriptions) {
var ret []string
return ret
}
return o.Descriptions
}
// GetDescriptionsOk returns a tuple with the Descriptions field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Availability) GetDescriptionsOk() ([]string, bool) {
if o == nil || IsNil(o.Descriptions) {
return nil, false
}
return o.Descriptions, true
}
// HasDescriptions returns a boolean if a field has been set.
func (o *Availability) HasDescriptions() bool {
if o != nil && !IsNil(o.Descriptions) {
return true
}
return false
}
// SetDescriptions gets a reference to the given []string and assigns it to the Descriptions field.
func (o *Availability) SetDescriptions(v []string) {
o.Descriptions = v
}
func (o Availability) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o Availability) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
serializedNamedDomainModel, errNamedDomainModel := json.Marshal(o.NamedDomainModel)
if errNamedDomainModel != nil {
return map[string]interface{}{}, errNamedDomainModel
}
errNamedDomainModel = json.Unmarshal([]byte(serializedNamedDomainModel), &toSerialize)
if errNamedDomainModel != nil {
return map[string]interface{}{}, errNamedDomainModel
}
toSerialize["startdate"] = o.Startdate
if !IsNil(o.Enddate) {
toSerialize["enddate"] = o.Enddate
}
if !IsNil(o.ObjectType) {
toSerialize["objectType"] = o.ObjectType
}
toSerialize["workHours"] = o.WorkHours
toSerialize["plannedHours"] = o.PlannedHours
if !IsNil(o.Descriptions) {
toSerialize["descriptions"] = o.Descriptions
}
return toSerialize, nil
}
type NullableAvailability struct {
value *Availability
isSet bool
}
func (v NullableAvailability) Get() *Availability {
return v.value
}
func (v *NullableAvailability) Set(val *Availability) {
v.value = val
v.isSet = true
}
func (v NullableAvailability) IsSet() bool {
return v.isSet
}
func (v *NullableAvailability) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAvailability(val *Availability) *NullableAvailability {
return &NullableAvailability{value: val, isSet: true}
}
func (v NullableAvailability) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAvailability) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}