-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_ev_options.go
213 lines (177 loc) · 6.4 KB
/
model_ev_options.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
/*
Routing
With the Routing service you can calculate routes from A to B taking into account vehicle-specific restrictions, traffic situations, toll, emissions, drivers' working hours, service times and opening intervals.
API version: 1.33
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package optiflow_routing
import (
"encoding/json"
)
// checks if the EvOptions type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &EvOptions{}
// EvOptions struct for EvOptions
type EvOptions struct {
// The available battery capacity at the start of the route [%].
InitialStateOfCharge *float64 `json:"initialStateOfCharge,omitempty"`
// The minimum wanted remaining battery capacity at the end of the route and at the end of each leg [%].
MinimumStateOfCharge *float64 `json:"minimumStateOfCharge,omitempty"`
// Specifies if an energy efficient route should be calculated.
EnergyEfficientRoute *bool `json:"energyEfficientRoute,omitempty"`
}
// NewEvOptions instantiates a new EvOptions 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 NewEvOptions() *EvOptions {
this := EvOptions{}
var initialStateOfCharge float64 = 100
this.InitialStateOfCharge = &initialStateOfCharge
var minimumStateOfCharge float64 = 10
this.MinimumStateOfCharge = &minimumStateOfCharge
var energyEfficientRoute bool = false
this.EnergyEfficientRoute = &energyEfficientRoute
return &this
}
// NewEvOptionsWithDefaults instantiates a new EvOptions 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 NewEvOptionsWithDefaults() *EvOptions {
this := EvOptions{}
var initialStateOfCharge float64 = 100
this.InitialStateOfCharge = &initialStateOfCharge
var minimumStateOfCharge float64 = 10
this.MinimumStateOfCharge = &minimumStateOfCharge
var energyEfficientRoute bool = false
this.EnergyEfficientRoute = &energyEfficientRoute
return &this
}
// GetInitialStateOfCharge returns the InitialStateOfCharge field value if set, zero value otherwise.
func (o *EvOptions) GetInitialStateOfCharge() float64 {
if o == nil || IsNil(o.InitialStateOfCharge) {
var ret float64
return ret
}
return *o.InitialStateOfCharge
}
// GetInitialStateOfChargeOk returns a tuple with the InitialStateOfCharge field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *EvOptions) GetInitialStateOfChargeOk() (*float64, bool) {
if o == nil || IsNil(o.InitialStateOfCharge) {
return nil, false
}
return o.InitialStateOfCharge, true
}
// HasInitialStateOfCharge returns a boolean if a field has been set.
func (o *EvOptions) HasInitialStateOfCharge() bool {
if o != nil && !IsNil(o.InitialStateOfCharge) {
return true
}
return false
}
// SetInitialStateOfCharge gets a reference to the given float64 and assigns it to the InitialStateOfCharge field.
func (o *EvOptions) SetInitialStateOfCharge(v float64) {
o.InitialStateOfCharge = &v
}
// GetMinimumStateOfCharge returns the MinimumStateOfCharge field value if set, zero value otherwise.
func (o *EvOptions) GetMinimumStateOfCharge() float64 {
if o == nil || IsNil(o.MinimumStateOfCharge) {
var ret float64
return ret
}
return *o.MinimumStateOfCharge
}
// GetMinimumStateOfChargeOk returns a tuple with the MinimumStateOfCharge field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *EvOptions) GetMinimumStateOfChargeOk() (*float64, bool) {
if o == nil || IsNil(o.MinimumStateOfCharge) {
return nil, false
}
return o.MinimumStateOfCharge, true
}
// HasMinimumStateOfCharge returns a boolean if a field has been set.
func (o *EvOptions) HasMinimumStateOfCharge() bool {
if o != nil && !IsNil(o.MinimumStateOfCharge) {
return true
}
return false
}
// SetMinimumStateOfCharge gets a reference to the given float64 and assigns it to the MinimumStateOfCharge field.
func (o *EvOptions) SetMinimumStateOfCharge(v float64) {
o.MinimumStateOfCharge = &v
}
// GetEnergyEfficientRoute returns the EnergyEfficientRoute field value if set, zero value otherwise.
func (o *EvOptions) GetEnergyEfficientRoute() bool {
if o == nil || IsNil(o.EnergyEfficientRoute) {
var ret bool
return ret
}
return *o.EnergyEfficientRoute
}
// GetEnergyEfficientRouteOk returns a tuple with the EnergyEfficientRoute field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *EvOptions) GetEnergyEfficientRouteOk() (*bool, bool) {
if o == nil || IsNil(o.EnergyEfficientRoute) {
return nil, false
}
return o.EnergyEfficientRoute, true
}
// HasEnergyEfficientRoute returns a boolean if a field has been set.
func (o *EvOptions) HasEnergyEfficientRoute() bool {
if o != nil && !IsNil(o.EnergyEfficientRoute) {
return true
}
return false
}
// SetEnergyEfficientRoute gets a reference to the given bool and assigns it to the EnergyEfficientRoute field.
func (o *EvOptions) SetEnergyEfficientRoute(v bool) {
o.EnergyEfficientRoute = &v
}
func (o EvOptions) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o EvOptions) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.InitialStateOfCharge) {
toSerialize["initialStateOfCharge"] = o.InitialStateOfCharge
}
if !IsNil(o.MinimumStateOfCharge) {
toSerialize["minimumStateOfCharge"] = o.MinimumStateOfCharge
}
if !IsNil(o.EnergyEfficientRoute) {
toSerialize["energyEfficientRoute"] = o.EnergyEfficientRoute
}
return toSerialize, nil
}
type NullableEvOptions struct {
value *EvOptions
isSet bool
}
func (v NullableEvOptions) Get() *EvOptions {
return v.value
}
func (v *NullableEvOptions) Set(val *EvOptions) {
v.value = val
v.isSet = true
}
func (v NullableEvOptions) IsSet() bool {
return v.isSet
}
func (v *NullableEvOptions) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableEvOptions(val *EvOptions) *NullableEvOptions {
return &NullableEvOptions{value: val, isSet: true}
}
func (v NullableEvOptions) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableEvOptions) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}