ultracart_api 4.0.38.rc → 4.0.41.rc

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,256 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.0.1-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module UltracartClient
17
+ class ConversationMultimediaUploadUrlResponse
18
+ attr_accessor :conversation_multimedia_upload_url
19
+
20
+ attr_accessor :error
21
+
22
+ attr_accessor :metadata
23
+
24
+ # Indicates if API call was successful
25
+ attr_accessor :success
26
+
27
+ attr_accessor :warning
28
+
29
+ # Attribute mapping from ruby-style variable name to JSON key.
30
+ def self.attribute_map
31
+ {
32
+ :'conversation_multimedia_upload_url' => :'conversation_multimedia_upload_url',
33
+ :'error' => :'error',
34
+ :'metadata' => :'metadata',
35
+ :'success' => :'success',
36
+ :'warning' => :'warning'
37
+ }
38
+ end
39
+
40
+ # Returns all the JSON keys this model knows about
41
+ def self.acceptable_attributes
42
+ attribute_map.values
43
+ end
44
+
45
+ # Attribute type mapping.
46
+ def self.openapi_types
47
+ {
48
+ :'conversation_multimedia_upload_url' => :'ConversationMultimediaUploadUrl',
49
+ :'error' => :'Error',
50
+ :'metadata' => :'ResponseMetadata',
51
+ :'success' => :'Boolean',
52
+ :'warning' => :'Warning'
53
+ }
54
+ end
55
+
56
+ # List of attributes with nullable: true
57
+ def self.openapi_nullable
58
+ Set.new([
59
+ ])
60
+ end
61
+
62
+ # Initializes the object
63
+ # @param [Hash] attributes Model attributes in the form of hash
64
+ def initialize(attributes = {})
65
+ if (!attributes.is_a?(Hash))
66
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ConversationMultimediaUploadUrlResponse` initialize method"
67
+ end
68
+
69
+ # check to see if the attribute exists and convert string to symbol for hash key
70
+ attributes = attributes.each_with_object({}) { |(k, v), h|
71
+ if (!self.class.attribute_map.key?(k.to_sym))
72
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ConversationMultimediaUploadUrlResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
73
+ end
74
+ h[k.to_sym] = v
75
+ }
76
+
77
+ if attributes.key?(:'conversation_multimedia_upload_url')
78
+ self.conversation_multimedia_upload_url = attributes[:'conversation_multimedia_upload_url']
79
+ end
80
+
81
+ if attributes.key?(:'error')
82
+ self.error = attributes[:'error']
83
+ end
84
+
85
+ if attributes.key?(:'metadata')
86
+ self.metadata = attributes[:'metadata']
87
+ end
88
+
89
+ if attributes.key?(:'success')
90
+ self.success = attributes[:'success']
91
+ end
92
+
93
+ if attributes.key?(:'warning')
94
+ self.warning = attributes[:'warning']
95
+ end
96
+ end
97
+
98
+ # Show invalid properties with the reasons. Usually used together with valid?
99
+ # @return Array for valid properties with the reasons
100
+ def list_invalid_properties
101
+ invalid_properties = Array.new
102
+ invalid_properties
103
+ end
104
+
105
+ # Check to see if the all the properties in the model are valid
106
+ # @return true if the model is valid
107
+ def valid?
108
+ true
109
+ end
110
+
111
+ # Checks equality by comparing each attribute.
112
+ # @param [Object] Object to be compared
113
+ def ==(o)
114
+ return true if self.equal?(o)
115
+ self.class == o.class &&
116
+ conversation_multimedia_upload_url == o.conversation_multimedia_upload_url &&
117
+ error == o.error &&
118
+ metadata == o.metadata &&
119
+ success == o.success &&
120
+ warning == o.warning
121
+ end
122
+
123
+ # @see the `==` method
124
+ # @param [Object] Object to be compared
125
+ def eql?(o)
126
+ self == o
127
+ end
128
+
129
+ # Calculates hash code according to all attributes.
130
+ # @return [Integer] Hash code
131
+ def hash
132
+ [conversation_multimedia_upload_url, error, metadata, success, warning].hash
133
+ end
134
+
135
+ # Builds the object from hash
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ # @return [Object] Returns the model itself
138
+ def self.build_from_hash(attributes)
139
+ new.build_from_hash(attributes)
140
+ end
141
+
142
+ # Builds the object from hash
143
+ # @param [Hash] attributes Model attributes in the form of hash
144
+ # @return [Object] Returns the model itself
145
+ def build_from_hash(attributes)
146
+ return nil unless attributes.is_a?(Hash)
147
+ attributes = attributes.transform_keys(&:to_sym)
148
+ self.class.openapi_types.each_pair do |key, type|
149
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
150
+ self.send("#{key}=", nil)
151
+ elsif type =~ /\AArray<(.*)>/i
152
+ # check to ensure the input is an array given that the attribute
153
+ # is documented as an array but the input is not
154
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
155
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
156
+ end
157
+ elsif !attributes[self.class.attribute_map[key]].nil?
158
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
159
+ end
160
+ end
161
+
162
+ self
163
+ end
164
+
165
+ # Deserializes the data based on type
166
+ # @param string type Data type
167
+ # @param string value Value to be deserialized
168
+ # @return [Object] Deserialized data
169
+ def _deserialize(type, value)
170
+ case type.to_sym
171
+ when :Time
172
+ Time.parse(value)
173
+ when :Date
174
+ Date.parse(value)
175
+ when :String
176
+ value.to_s
177
+ when :Integer
178
+ value.to_i
179
+ when :Float
180
+ value.to_f
181
+ when :Boolean
182
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
183
+ true
184
+ else
185
+ false
186
+ end
187
+ when :Object
188
+ # generic object (usually a Hash), return directly
189
+ value
190
+ when /\AArray<(?<inner_type>.+)>\z/
191
+ inner_type = Regexp.last_match[:inner_type]
192
+ value.map { |v| _deserialize(inner_type, v) }
193
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
194
+ k_type = Regexp.last_match[:k_type]
195
+ v_type = Regexp.last_match[:v_type]
196
+ {}.tap do |hash|
197
+ value.each do |k, v|
198
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
199
+ end
200
+ end
201
+ else # model
202
+ # models (e.g. Pet) or oneOf
203
+ klass = UltracartClient.const_get(type)
204
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
205
+ end
206
+ end
207
+
208
+ # Returns the string representation of the object
209
+ # @return [String] String presentation of the object
210
+ def to_s
211
+ to_hash.to_s
212
+ end
213
+
214
+ # to_body is an alias to to_hash (backward compatibility)
215
+ # @return [Hash] Returns the object in the form of hash
216
+ def to_body
217
+ to_hash
218
+ end
219
+
220
+ # Returns the object in the form of hash
221
+ # @return [Hash] Returns the object in the form of hash
222
+ def to_hash
223
+ hash = {}
224
+ self.class.attribute_map.each_pair do |attr, param|
225
+ value = self.send(attr)
226
+ if value.nil?
227
+ is_nullable = self.class.openapi_nullable.include?(attr)
228
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
229
+ end
230
+
231
+ hash[param] = _to_hash(value)
232
+ end
233
+ hash
234
+ end
235
+
236
+ # Outputs non-array value in the form of hash
237
+ # For object, use to_hash. Otherwise, just return the value
238
+ # @param [Object] value Any valid value
239
+ # @return [Hash] Returns the value in the form of hash
240
+ def _to_hash(value)
241
+ if value.is_a?(Array)
242
+ value.compact.map { |v| _to_hash(v) }
243
+ elsif value.is_a?(Hash)
244
+ {}.tap do |hash|
245
+ value.each { |k, v| hash[k] = _to_hash(v) }
246
+ end
247
+ elsif value.respond_to? :to_hash
248
+ value.to_hash
249
+ else
250
+ value
251
+ end
252
+ end
253
+
254
+ end
255
+
256
+ end
@@ -19,11 +19,14 @@ module UltracartClient
19
19
 
20
20
  attr_accessor :conversation_arn
21
21
 
22
+ attr_accessor :conversation_webchat_queue_uuid
23
+
22
24
  # Attribute mapping from ruby-style variable name to JSON key.
23
25
  def self.attribute_map
24
26
  {
25
27
  :'add_conversation_participant_arns' => :'add_conversation_participant_arns',
26
- :'conversation_arn' => :'conversation_arn'
28
+ :'conversation_arn' => :'conversation_arn',
29
+ :'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid'
27
30
  }
28
31
  end
29
32
 
@@ -36,7 +39,8 @@ module UltracartClient
36
39
  def self.openapi_types
37
40
  {
38
41
  :'add_conversation_participant_arns' => :'Array<String>',
39
- :'conversation_arn' => :'String'
42
+ :'conversation_arn' => :'String',
43
+ :'conversation_webchat_queue_uuid' => :'String'
40
44
  }
41
45
  end
42
46
 
@@ -70,6 +74,10 @@ module UltracartClient
70
74
  if attributes.key?(:'conversation_arn')
71
75
  self.conversation_arn = attributes[:'conversation_arn']
72
76
  end
77
+
78
+ if attributes.key?(:'conversation_webchat_queue_uuid')
79
+ self.conversation_webchat_queue_uuid = attributes[:'conversation_webchat_queue_uuid']
80
+ end
73
81
  end
74
82
 
75
83
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -91,7 +99,8 @@ module UltracartClient
91
99
  return true if self.equal?(o)
92
100
  self.class == o.class &&
93
101
  add_conversation_participant_arns == o.add_conversation_participant_arns &&
94
- conversation_arn == o.conversation_arn
102
+ conversation_arn == o.conversation_arn &&
103
+ conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid
95
104
  end
96
105
 
97
106
  # @see the `==` method
@@ -103,7 +112,7 @@ module UltracartClient
103
112
  # Calculates hash code according to all attributes.
104
113
  # @return [Integer] Hash code
105
114
  def hash
106
- [add_conversation_participant_arns, conversation_arn].hash
115
+ [add_conversation_participant_arns, conversation_arn, conversation_webchat_queue_uuid].hash
107
116
  end
108
117
 
109
118
  # Builds the object from hash
@@ -0,0 +1,340 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.0.1-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module UltracartClient
17
+ class ConversationWebsocketMessage
18
+ # Conversation UUID if the websocket message is tied to a specific conversation
19
+ attr_accessor :conversation_uuid
20
+
21
+ attr_accessor :event_conversation_closed
22
+
23
+ attr_accessor :event_new_conversation
24
+
25
+ attr_accessor :event_new_message
26
+
27
+ attr_accessor :event_queue_position
28
+
29
+ # Type of event
30
+ attr_accessor :event_type
31
+
32
+ attr_accessor :event_updated_message
33
+
34
+ attr_accessor :message
35
+
36
+ # Type of message
37
+ attr_accessor :type
38
+
39
+ class EnumAttributeValidator
40
+ attr_reader :datatype
41
+ attr_reader :allowable_values
42
+
43
+ def initialize(datatype, allowable_values)
44
+ @allowable_values = allowable_values.map do |value|
45
+ case datatype.to_s
46
+ when /Integer/i
47
+ value.to_i
48
+ when /Float/i
49
+ value.to_f
50
+ else
51
+ value
52
+ end
53
+ end
54
+ end
55
+
56
+ def valid?(value)
57
+ !value || allowable_values.include?(value)
58
+ end
59
+ end
60
+
61
+ # Attribute mapping from ruby-style variable name to JSON key.
62
+ def self.attribute_map
63
+ {
64
+ :'conversation_uuid' => :'conversation_uuid',
65
+ :'event_conversation_closed' => :'event_conversation_closed',
66
+ :'event_new_conversation' => :'event_new_conversation',
67
+ :'event_new_message' => :'event_new_message',
68
+ :'event_queue_position' => :'event_queue_position',
69
+ :'event_type' => :'event_type',
70
+ :'event_updated_message' => :'event_updated_message',
71
+ :'message' => :'message',
72
+ :'type' => :'type'
73
+ }
74
+ end
75
+
76
+ # Returns all the JSON keys this model knows about
77
+ def self.acceptable_attributes
78
+ attribute_map.values
79
+ end
80
+
81
+ # Attribute type mapping.
82
+ def self.openapi_types
83
+ {
84
+ :'conversation_uuid' => :'String',
85
+ :'event_conversation_closed' => :'Conversation',
86
+ :'event_new_conversation' => :'Conversation',
87
+ :'event_new_message' => :'Conversation',
88
+ :'event_queue_position' => :'ConversationEventQueuePosition',
89
+ :'event_type' => :'String',
90
+ :'event_updated_message' => :'ConversationMessage',
91
+ :'message' => :'ConversationMessage',
92
+ :'type' => :'String'
93
+ }
94
+ end
95
+
96
+ # List of attributes with nullable: true
97
+ def self.openapi_nullable
98
+ Set.new([
99
+ ])
100
+ end
101
+
102
+ # Initializes the object
103
+ # @param [Hash] attributes Model attributes in the form of hash
104
+ def initialize(attributes = {})
105
+ if (!attributes.is_a?(Hash))
106
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ConversationWebsocketMessage` initialize method"
107
+ end
108
+
109
+ # check to see if the attribute exists and convert string to symbol for hash key
110
+ attributes = attributes.each_with_object({}) { |(k, v), h|
111
+ if (!self.class.attribute_map.key?(k.to_sym))
112
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ConversationWebsocketMessage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
113
+ end
114
+ h[k.to_sym] = v
115
+ }
116
+
117
+ if attributes.key?(:'conversation_uuid')
118
+ self.conversation_uuid = attributes[:'conversation_uuid']
119
+ end
120
+
121
+ if attributes.key?(:'event_conversation_closed')
122
+ self.event_conversation_closed = attributes[:'event_conversation_closed']
123
+ end
124
+
125
+ if attributes.key?(:'event_new_conversation')
126
+ self.event_new_conversation = attributes[:'event_new_conversation']
127
+ end
128
+
129
+ if attributes.key?(:'event_new_message')
130
+ self.event_new_message = attributes[:'event_new_message']
131
+ end
132
+
133
+ if attributes.key?(:'event_queue_position')
134
+ self.event_queue_position = attributes[:'event_queue_position']
135
+ end
136
+
137
+ if attributes.key?(:'event_type')
138
+ self.event_type = attributes[:'event_type']
139
+ end
140
+
141
+ if attributes.key?(:'event_updated_message')
142
+ self.event_updated_message = attributes[:'event_updated_message']
143
+ end
144
+
145
+ if attributes.key?(:'message')
146
+ self.message = attributes[:'message']
147
+ end
148
+
149
+ if attributes.key?(:'type')
150
+ self.type = attributes[:'type']
151
+ end
152
+ end
153
+
154
+ # Show invalid properties with the reasons. Usually used together with valid?
155
+ # @return Array for valid properties with the reasons
156
+ def list_invalid_properties
157
+ invalid_properties = Array.new
158
+ invalid_properties
159
+ end
160
+
161
+ # Check to see if the all the properties in the model are valid
162
+ # @return true if the model is valid
163
+ def valid?
164
+ event_type_validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message"])
165
+ return false unless event_type_validator.valid?(@event_type)
166
+ type_validator = EnumAttributeValidator.new('String', ["message", "event", "ping"])
167
+ return false unless type_validator.valid?(@type)
168
+ true
169
+ end
170
+
171
+ # Custom attribute writer method checking allowed values (enum).
172
+ # @param [Object] event_type Object to be assigned
173
+ def event_type=(event_type)
174
+ validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message"])
175
+ unless validator.valid?(event_type)
176
+ fail ArgumentError, "invalid value for \"event_type\", must be one of #{validator.allowable_values}."
177
+ end
178
+ @event_type = event_type
179
+ end
180
+
181
+ # Custom attribute writer method checking allowed values (enum).
182
+ # @param [Object] type Object to be assigned
183
+ def type=(type)
184
+ validator = EnumAttributeValidator.new('String', ["message", "event", "ping"])
185
+ unless validator.valid?(type)
186
+ fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
187
+ end
188
+ @type = type
189
+ end
190
+
191
+ # Checks equality by comparing each attribute.
192
+ # @param [Object] Object to be compared
193
+ def ==(o)
194
+ return true if self.equal?(o)
195
+ self.class == o.class &&
196
+ conversation_uuid == o.conversation_uuid &&
197
+ event_conversation_closed == o.event_conversation_closed &&
198
+ event_new_conversation == o.event_new_conversation &&
199
+ event_new_message == o.event_new_message &&
200
+ event_queue_position == o.event_queue_position &&
201
+ event_type == o.event_type &&
202
+ event_updated_message == o.event_updated_message &&
203
+ message == o.message &&
204
+ type == o.type
205
+ end
206
+
207
+ # @see the `==` method
208
+ # @param [Object] Object to be compared
209
+ def eql?(o)
210
+ self == o
211
+ end
212
+
213
+ # Calculates hash code according to all attributes.
214
+ # @return [Integer] Hash code
215
+ def hash
216
+ [conversation_uuid, event_conversation_closed, event_new_conversation, event_new_message, event_queue_position, event_type, event_updated_message, message, type].hash
217
+ end
218
+
219
+ # Builds the object from hash
220
+ # @param [Hash] attributes Model attributes in the form of hash
221
+ # @return [Object] Returns the model itself
222
+ def self.build_from_hash(attributes)
223
+ new.build_from_hash(attributes)
224
+ end
225
+
226
+ # Builds the object from hash
227
+ # @param [Hash] attributes Model attributes in the form of hash
228
+ # @return [Object] Returns the model itself
229
+ def build_from_hash(attributes)
230
+ return nil unless attributes.is_a?(Hash)
231
+ attributes = attributes.transform_keys(&:to_sym)
232
+ self.class.openapi_types.each_pair do |key, type|
233
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
234
+ self.send("#{key}=", nil)
235
+ elsif type =~ /\AArray<(.*)>/i
236
+ # check to ensure the input is an array given that the attribute
237
+ # is documented as an array but the input is not
238
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
239
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
240
+ end
241
+ elsif !attributes[self.class.attribute_map[key]].nil?
242
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
243
+ end
244
+ end
245
+
246
+ self
247
+ end
248
+
249
+ # Deserializes the data based on type
250
+ # @param string type Data type
251
+ # @param string value Value to be deserialized
252
+ # @return [Object] Deserialized data
253
+ def _deserialize(type, value)
254
+ case type.to_sym
255
+ when :Time
256
+ Time.parse(value)
257
+ when :Date
258
+ Date.parse(value)
259
+ when :String
260
+ value.to_s
261
+ when :Integer
262
+ value.to_i
263
+ when :Float
264
+ value.to_f
265
+ when :Boolean
266
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
267
+ true
268
+ else
269
+ false
270
+ end
271
+ when :Object
272
+ # generic object (usually a Hash), return directly
273
+ value
274
+ when /\AArray<(?<inner_type>.+)>\z/
275
+ inner_type = Regexp.last_match[:inner_type]
276
+ value.map { |v| _deserialize(inner_type, v) }
277
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
278
+ k_type = Regexp.last_match[:k_type]
279
+ v_type = Regexp.last_match[:v_type]
280
+ {}.tap do |hash|
281
+ value.each do |k, v|
282
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
283
+ end
284
+ end
285
+ else # model
286
+ # models (e.g. Pet) or oneOf
287
+ klass = UltracartClient.const_get(type)
288
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
289
+ end
290
+ end
291
+
292
+ # Returns the string representation of the object
293
+ # @return [String] String presentation of the object
294
+ def to_s
295
+ to_hash.to_s
296
+ end
297
+
298
+ # to_body is an alias to to_hash (backward compatibility)
299
+ # @return [Hash] Returns the object in the form of hash
300
+ def to_body
301
+ to_hash
302
+ end
303
+
304
+ # Returns the object in the form of hash
305
+ # @return [Hash] Returns the object in the form of hash
306
+ def to_hash
307
+ hash = {}
308
+ self.class.attribute_map.each_pair do |attr, param|
309
+ value = self.send(attr)
310
+ if value.nil?
311
+ is_nullable = self.class.openapi_nullable.include?(attr)
312
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
313
+ end
314
+
315
+ hash[param] = _to_hash(value)
316
+ end
317
+ hash
318
+ end
319
+
320
+ # Outputs non-array value in the form of hash
321
+ # For object, use to_hash. Otherwise, just return the value
322
+ # @param [Object] value Any valid value
323
+ # @return [Hash] Returns the value in the form of hash
324
+ def _to_hash(value)
325
+ if value.is_a?(Array)
326
+ value.compact.map { |v| _to_hash(v) }
327
+ elsif value.is_a?(Hash)
328
+ {}.tap do |hash|
329
+ value.each { |k, v| hash[k] = _to_hash(v) }
330
+ end
331
+ elsif value.respond_to? :to_hash
332
+ value.to_hash
333
+ else
334
+ value
335
+ end
336
+ end
337
+
338
+ end
339
+
340
+ end
@@ -45,7 +45,7 @@ module UltracartClient
45
45
  # Postcard front container uuid
46
46
  attr_accessor :postcard_front_container_uuid
47
47
 
48
- # URL to screenshot of the front of the postcard
48
+ # URL to screenshot of the back of the postcard
49
49
  attr_accessor :screenshot_back_url
50
50
 
51
51
  # URL to screenshot of the front of the postcard
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.38.rc'
14
+ VERSION = '4.0.41.rc'
15
15
  end
data/lib/ultracart_api.rb CHANGED
@@ -44,6 +44,7 @@ require 'ultracart_api/models/auto_order_item_future_schedule'
44
44
  require 'ultracart_api/models/auto_order_item_option'
45
45
  require 'ultracart_api/models/auto_order_item_simple_schedule'
46
46
  require 'ultracart_api/models/auto_order_log'
47
+ require 'ultracart_api/models/auto_order_management'
47
48
  require 'ultracart_api/models/auto_order_query'
48
49
  require 'ultracart_api/models/auto_order_query_batch'
49
50
  require 'ultracart_api/models/auto_order_response'
@@ -136,13 +137,17 @@ require 'ultracart_api/models/city_state_zip'
136
137
  require 'ultracart_api/models/conversation'
137
138
  require 'ultracart_api/models/conversation_agent_auth'
138
139
  require 'ultracart_api/models/conversation_agent_auth_response'
140
+ require 'ultracart_api/models/conversation_event_queue_position'
139
141
  require 'ultracart_api/models/conversation_message'
140
142
  require 'ultracart_api/models/conversation_message_transport_status'
143
+ require 'ultracart_api/models/conversation_multimedia_upload_url'
144
+ require 'ultracart_api/models/conversation_multimedia_upload_url_response'
141
145
  require 'ultracart_api/models/conversation_participant'
142
146
  require 'ultracart_api/models/conversation_response'
143
147
  require 'ultracart_api/models/conversation_start_request'
144
148
  require 'ultracart_api/models/conversation_start_response'
145
149
  require 'ultracart_api/models/conversation_summary'
150
+ require 'ultracart_api/models/conversation_websocket_message'
146
151
  require 'ultracart_api/models/conversations_response'
147
152
  require 'ultracart_api/models/countries_response'
148
153
  require 'ultracart_api/models/country'