wheniwork-ruby 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,21 +22,22 @@ limitations under the License.
22
22
  require 'date'
23
23
 
24
24
  module WhenIWork
25
-
26
25
  class InlineResponse2003
27
- attr_accessor :user
26
+ include WhenIWork::Response
27
+
28
+ attr_accessor :users
28
29
 
29
30
  # Attribute mapping from ruby-style variable name to JSON key.
30
31
  def self.attribute_map
31
32
  {
32
- :'user' => :'user'
33
+ :'users' => :'users'
33
34
  }
34
35
  end
35
36
 
36
37
  # Attribute type mapping.
37
38
  def self.swagger_types
38
39
  {
39
- :'user' => :'User'
40
+ :'users' => :'Array<User>'
40
41
  }
41
42
  end
42
43
 
@@ -48,8 +49,10 @@ module WhenIWork
48
49
  # convert string to symbol for hash key
49
50
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
50
51
 
51
- if attributes.has_key?(:'user')
52
- self.user = attributes[:'user']
52
+ if attributes.has_key?(:'users')
53
+ if (value = attributes[:'users']).is_a?(Array)
54
+ self.users = value
55
+ end
53
56
  end
54
57
 
55
58
  end
@@ -71,125 +74,13 @@ module WhenIWork
71
74
  def ==(o)
72
75
  return true if self.equal?(o)
73
76
  self.class == o.class &&
74
- user == o.user
75
- end
76
-
77
- # @see the `==` method
78
- # @param [Object] Object to be compared
79
- def eql?(o)
80
- self == o
77
+ users == o.users
81
78
  end
82
79
 
83
80
  # Calculates hash code according to all attributes.
84
81
  # @return [Fixnum] Hash code
85
82
  def hash
86
- [user].hash
83
+ [users].hash
87
84
  end
88
-
89
- # Builds the object from hash
90
- # @param [Hash] attributes Model attributes in the form of hash
91
- # @return [Object] Returns the model itself
92
- def build_from_hash(attributes)
93
- return nil unless attributes.is_a?(Hash)
94
- self.class.swagger_types.each_pair do |key, type|
95
- if type =~ /^Array<(.*)>/i
96
- # check to ensure the input is an array given that the the attribute
97
- # is documented as an array but the input is not
98
- if attributes[self.class.attribute_map[key]].is_a?(Array)
99
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
100
- end
101
- elsif !attributes[self.class.attribute_map[key]].nil?
102
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
103
- end # or else data not found in attributes(hash), not an issue as the data can be optional
104
- end
105
-
106
- self
107
- end
108
-
109
- # Deserializes the data based on type
110
- # @param string type Data type
111
- # @param string value Value to be deserialized
112
- # @return [Object] Deserialized data
113
- def _deserialize(type, value)
114
- case type.to_sym
115
- when :DateTime
116
- DateTime.parse(value)
117
- when :Date
118
- Date.parse(value)
119
- when :String
120
- value.to_s
121
- when :Integer
122
- value.to_i
123
- when :Float
124
- value.to_f
125
- when :BOOLEAN
126
- if value.to_s =~ /^(true|t|yes|y|1)$/i
127
- true
128
- else
129
- false
130
- end
131
- when :Object
132
- # generic object (usually a Hash), return directly
133
- value
134
- when /\AArray<(?<inner_type>.+)>\z/
135
- inner_type = Regexp.last_match[:inner_type]
136
- value.map { |v| _deserialize(inner_type, v) }
137
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
138
- k_type = Regexp.last_match[:k_type]
139
- v_type = Regexp.last_match[:v_type]
140
- {}.tap do |hash|
141
- value.each do |k, v|
142
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
143
- end
144
- end
145
- else # model
146
- temp_model = WhenIWork.const_get(type).new
147
- temp_model.build_from_hash(value)
148
- end
149
- end
150
-
151
- # Returns the string representation of the object
152
- # @return [String] String presentation of the object
153
- def to_s
154
- to_hash.to_s
155
- end
156
-
157
- # to_body is an alias to to_hash (backward compatibility)
158
- # @return [Hash] Returns the object in the form of hash
159
- def to_body
160
- to_hash
161
- end
162
-
163
- # Returns the object in the form of hash
164
- # @return [Hash] Returns the object in the form of hash
165
- def to_hash
166
- hash = {}
167
- self.class.attribute_map.each_pair do |attr, param|
168
- value = self.send(attr)
169
- next if value.nil?
170
- hash[param] = _to_hash(value)
171
- end
172
- hash
173
- end
174
-
175
- # Outputs non-array value in the form of hash
176
- # For object, use to_hash. Otherwise, just return the value
177
- # @param [Object] value Any valid value
178
- # @return [Hash] Returns the value in the form of hash
179
- def _to_hash(value)
180
- if value.is_a?(Array)
181
- value.compact.map{ |v| _to_hash(v) }
182
- elsif value.is_a?(Hash)
183
- {}.tap do |hash|
184
- value.each { |k, v| hash[k] = _to_hash(v) }
185
- end
186
- elsif value.respond_to? :to_hash
187
- value.to_hash
188
- else
189
- value
190
- end
191
- end
192
-
193
85
  end
194
-
195
86
  end
@@ -0,0 +1,84 @@
1
+ =begin
2
+ Wheniwork
3
+
4
+ OpenAPI spec version: v2
5
+
6
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
7
+
8
+ Licensed under the Apache License, Version 2.0 (the "License");
9
+ you may not use this file except in compliance with the License.
10
+ You may obtain a copy of the License at
11
+
12
+ http://www.apache.org/licenses/LICENSE-2.0
13
+
14
+ Unless required by applicable law or agreed to in writing, software
15
+ distributed under the License is distributed on an "AS IS" BASIS,
16
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ See the License for the specific language governing permissions and
18
+ limitations under the License.
19
+
20
+ =end
21
+
22
+ require 'date'
23
+
24
+ module WhenIWork
25
+ class InlineResponse2004
26
+ include WhenIWork::Response
27
+
28
+ attr_accessor :user
29
+
30
+ # Attribute mapping from ruby-style variable name to JSON key.
31
+ def self.attribute_map
32
+ {
33
+ :'user' => :'user'
34
+ }
35
+ end
36
+
37
+ # Attribute type mapping.
38
+ def self.swagger_types
39
+ {
40
+ :'user' => :'User'
41
+ }
42
+ end
43
+
44
+ # Initializes the object
45
+ # @param [Hash] attributes Model attributes in the form of hash
46
+ def initialize(attributes = {})
47
+ return unless attributes.is_a?(Hash)
48
+
49
+ # convert string to symbol for hash key
50
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
51
+
52
+ if attributes.has_key?(:'user')
53
+ self.user = attributes[:'user']
54
+ end
55
+
56
+ end
57
+
58
+ # Show invalid properties with the reasons. Usually used together with valid?
59
+ # @return Array for valid properies with the reasons
60
+ def list_invalid_properties
61
+ invalid_properties = Array.new
62
+ return invalid_properties
63
+ end
64
+
65
+ # Check to see if the all the properties in the model are valid
66
+ # @return true if the model is valid
67
+ def valid?
68
+ end
69
+
70
+ # Checks equality by comparing each attribute.
71
+ # @param [Object] Object to be compared
72
+ def ==(o)
73
+ return true if self.equal?(o)
74
+ self.class == o.class &&
75
+ user == o.user
76
+ end
77
+
78
+ # Calculates hash code according to all attributes.
79
+ # @return [Fixnum] Hash code
80
+ def hash
81
+ [user].hash
82
+ end
83
+ end
84
+ end
@@ -22,14 +22,12 @@ limitations under the License.
22
22
  require 'date'
23
23
 
24
24
  module WhenIWork
25
-
26
25
  class Position
27
- attr_accessor :id
26
+ include WhenIWork::Response
28
27
 
28
+ attr_accessor :id
29
29
  attr_accessor :name
30
-
31
30
  attr_accessor :color
32
-
33
31
  attr_accessor :sort
34
32
 
35
33
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -101,122 +99,10 @@ module WhenIWork
101
99
  sort == o.sort
102
100
  end
103
101
 
104
- # @see the `==` method
105
- # @param [Object] Object to be compared
106
- def eql?(o)
107
- self == o
108
- end
109
-
110
102
  # Calculates hash code according to all attributes.
111
103
  # @return [Fixnum] Hash code
112
104
  def hash
113
105
  [id, name, color, sort].hash
114
106
  end
115
-
116
- # Builds the object from hash
117
- # @param [Hash] attributes Model attributes in the form of hash
118
- # @return [Object] Returns the model itself
119
- def build_from_hash(attributes)
120
- return nil unless attributes.is_a?(Hash)
121
- self.class.swagger_types.each_pair do |key, type|
122
- if type =~ /^Array<(.*)>/i
123
- # check to ensure the input is an array given that the the attribute
124
- # is documented as an array but the input is not
125
- if attributes[self.class.attribute_map[key]].is_a?(Array)
126
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
127
- end
128
- elsif !attributes[self.class.attribute_map[key]].nil?
129
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
130
- end # or else data not found in attributes(hash), not an issue as the data can be optional
131
- end
132
-
133
- self
134
- end
135
-
136
- # Deserializes the data based on type
137
- # @param string type Data type
138
- # @param string value Value to be deserialized
139
- # @return [Object] Deserialized data
140
- def _deserialize(type, value)
141
- case type.to_sym
142
- when :DateTime
143
- DateTime.parse(value)
144
- when :Date
145
- Date.parse(value)
146
- when :String
147
- value.to_s
148
- when :Integer
149
- value.to_i
150
- when :Float
151
- value.to_f
152
- when :BOOLEAN
153
- if value.to_s =~ /^(true|t|yes|y|1)$/i
154
- true
155
- else
156
- false
157
- end
158
- when :Object
159
- # generic object (usually a Hash), return directly
160
- value
161
- when /\AArray<(?<inner_type>.+)>\z/
162
- inner_type = Regexp.last_match[:inner_type]
163
- value.map { |v| _deserialize(inner_type, v) }
164
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
165
- k_type = Regexp.last_match[:k_type]
166
- v_type = Regexp.last_match[:v_type]
167
- {}.tap do |hash|
168
- value.each do |k, v|
169
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
170
- end
171
- end
172
- else # model
173
- temp_model = WhenIWork.const_get(type).new
174
- temp_model.build_from_hash(value)
175
- end
176
- end
177
-
178
- # Returns the string representation of the object
179
- # @return [String] String presentation of the object
180
- def to_s
181
- to_hash.to_s
182
- end
183
-
184
- # to_body is an alias to to_hash (backward compatibility)
185
- # @return [Hash] Returns the object in the form of hash
186
- def to_body
187
- to_hash
188
- end
189
-
190
- # Returns the object in the form of hash
191
- # @return [Hash] Returns the object in the form of hash
192
- def to_hash
193
- hash = {}
194
- self.class.attribute_map.each_pair do |attr, param|
195
- value = self.send(attr)
196
- next if value.nil?
197
- hash[param] = _to_hash(value)
198
- end
199
- hash
200
- end
201
-
202
- # Outputs non-array value in the form of hash
203
- # For object, use to_hash. Otherwise, just return the value
204
- # @param [Object] value Any valid value
205
- # @return [Hash] Returns the value in the form of hash
206
- def _to_hash(value)
207
- if value.is_a?(Array)
208
- value.compact.map{ |v| _to_hash(v) }
209
- elsif value.is_a?(Hash)
210
- {}.tap do |hash|
211
- value.each { |k, v| hash[k] = _to_hash(v) }
212
- end
213
- elsif value.respond_to? :to_hash
214
- value.to_hash
215
- else
216
- value
217
- end
218
- end
219
-
220
107
  end
221
-
222
108
  end
@@ -22,32 +22,21 @@ limitations under the License.
22
22
  require 'date'
23
23
 
24
24
  module WhenIWork
25
-
26
25
  class Shift
27
- attr_accessor :start_time
26
+ include WhenIWork::Response
28
27
 
28
+ attr_accessor :start_time
29
29
  attr_accessor :end_time
30
-
31
30
  attr_accessor :created_at
32
-
33
31
  attr_accessor :updated_at
34
-
35
32
  attr_accessor :notified_at
36
-
37
33
  attr_accessor :id
38
-
39
34
  attr_accessor :account_id
40
-
41
35
  attr_accessor :user_id
42
-
43
36
  attr_accessor :location_id
44
-
45
37
  attr_accessor :alerted
46
-
47
38
  attr_accessor :is_open
48
-
49
39
  attr_accessor :acknowledged
50
-
51
40
  attr_accessor :notes
52
41
 
53
42
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -182,122 +171,10 @@ module WhenIWork
182
171
  notes == o.notes
183
172
  end
184
173
 
185
- # @see the `==` method
186
- # @param [Object] Object to be compared
187
- def eql?(o)
188
- self == o
189
- end
190
-
191
174
  # Calculates hash code according to all attributes.
192
175
  # @return [Fixnum] Hash code
193
176
  def hash
194
177
  [start_time, end_time, created_at, updated_at, notified_at, id, account_id, user_id, location_id, alerted, is_open, acknowledged, notes].hash
195
178
  end
196
-
197
- # Builds the object from hash
198
- # @param [Hash] attributes Model attributes in the form of hash
199
- # @return [Object] Returns the model itself
200
- def build_from_hash(attributes)
201
- return nil unless attributes.is_a?(Hash)
202
- self.class.swagger_types.each_pair do |key, type|
203
- if type =~ /^Array<(.*)>/i
204
- # check to ensure the input is an array given that the the attribute
205
- # is documented as an array but the input is not
206
- if attributes[self.class.attribute_map[key]].is_a?(Array)
207
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
208
- end
209
- elsif !attributes[self.class.attribute_map[key]].nil?
210
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
211
- end # or else data not found in attributes(hash), not an issue as the data can be optional
212
- end
213
-
214
- self
215
- end
216
-
217
- # Deserializes the data based on type
218
- # @param string type Data type
219
- # @param string value Value to be deserialized
220
- # @return [Object] Deserialized data
221
- def _deserialize(type, value)
222
- case type.to_sym
223
- when :DateTime
224
- DateTime.parse(value)
225
- when :Date
226
- Date.parse(value)
227
- when :String
228
- value.to_s
229
- when :Integer
230
- value.to_i
231
- when :Float
232
- value.to_f
233
- when :BOOLEAN
234
- if value.to_s =~ /^(true|t|yes|y|1)$/i
235
- true
236
- else
237
- false
238
- end
239
- when :Object
240
- # generic object (usually a Hash), return directly
241
- value
242
- when /\AArray<(?<inner_type>.+)>\z/
243
- inner_type = Regexp.last_match[:inner_type]
244
- value.map { |v| _deserialize(inner_type, v) }
245
- when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
246
- k_type = Regexp.last_match[:k_type]
247
- v_type = Regexp.last_match[:v_type]
248
- {}.tap do |hash|
249
- value.each do |k, v|
250
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
251
- end
252
- end
253
- else # model
254
- temp_model = WhenIWork.const_get(type).new
255
- temp_model.build_from_hash(value)
256
- end
257
- end
258
-
259
- # Returns the string representation of the object
260
- # @return [String] String presentation of the object
261
- def to_s
262
- to_hash.to_s
263
- end
264
-
265
- # to_body is an alias to to_hash (backward compatibility)
266
- # @return [Hash] Returns the object in the form of hash
267
- def to_body
268
- to_hash
269
- end
270
-
271
- # Returns the object in the form of hash
272
- # @return [Hash] Returns the object in the form of hash
273
- def to_hash
274
- hash = {}
275
- self.class.attribute_map.each_pair do |attr, param|
276
- value = self.send(attr)
277
- next if value.nil?
278
- hash[param] = _to_hash(value)
279
- end
280
- hash
281
- end
282
-
283
- # Outputs non-array value in the form of hash
284
- # For object, use to_hash. Otherwise, just return the value
285
- # @param [Object] value Any valid value
286
- # @return [Hash] Returns the value in the form of hash
287
- def _to_hash(value)
288
- if value.is_a?(Array)
289
- value.compact.map{ |v| _to_hash(v) }
290
- elsif value.is_a?(Hash)
291
- {}.tap do |hash|
292
- value.each { |k, v| hash[k] = _to_hash(v) }
293
- end
294
- elsif value.respond_to? :to_hash
295
- value.to_hash
296
- else
297
- value
298
- end
299
- end
300
-
301
179
  end
302
-
303
180
  end