purecloudplatformclientv2 27.1.0 → 28.0.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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/docs/AdditionalMessage.md +13 -0
- data/docs/AnalyticsParticipant.md +1 -0
- data/docs/ArchitectApi.md +40 -28
- data/docs/Attachment.md +5 -5
- data/docs/ConversationNotificationAttachment.md +18 -0
- data/docs/ConversationNotificationDraftAttachments.md +18 -0
- data/docs/ConversationNotificationEmail.md +1 -0
- data/docs/ConversationNotificationEmails.md +1 -0
- data/docs/ConversationsApi.md +964 -198
- data/docs/DataTable.md +17 -0
- data/docs/DataTableRowEntityListing.md +22 -0
- data/docs/DataTablesDomainEntityListing.md +22 -0
- data/docs/Document.md +1 -1
- data/docs/DomainEdgeSoftwareVersionDto.md +1 -1
- data/docs/DomainOrganizationRole.md +1 -1
- data/docs/DomainOrganizationRoleCreate.md +1 -1
- data/docs/DomainOrganizationRoleUpdate.md +1 -1
- data/docs/Email.md +1 -0
- data/docs/EmailConversationNotificationAttachment.md +18 -0
- data/docs/EmailConversationNotificationEmailMediaParticipant.md +1 -0
- data/docs/EmailConversationNotificationParticipants.md +1 -0
- data/docs/EmailMediaParticipant.md +1 -0
- data/docs/FaxDocument.md +1 -1
- data/docs/JsonNode.md +4 -4
- data/docs/MessageConversation.md +17 -0
- data/docs/MessageConversationEntityListing.md +22 -0
- data/docs/MessageData.md +25 -0
- data/docs/MessageMediaParticipant.md +44 -0
- data/docs/Question.md +1 -1
- data/docs/Recipient.md +20 -0
- data/docs/RecipientListing.md +22 -0
- data/docs/RoutingApi.md +632 -0
- data/docs/SMSAvailablePhoneNumberEntityListing.md +13 -0
- data/docs/SmsAddressProvision.md +21 -0
- data/docs/SmsAvailablePhoneNumber.md +22 -0
- data/docs/SmsPhoneNumber.md +25 -0
- data/docs/SmsPhoneNumberEntityListing.md +22 -0
- data/docs/SmsPhoneNumberProvision.md +18 -0
- data/docs/TextMessageListing.md +22 -0
- data/lib/purecloudplatformclientv2.rb +20 -0
- data/lib/purecloudplatformclientv2/api/architect_api.rb +108 -34
- data/lib/purecloudplatformclientv2/api/conversations_api.rb +1247 -317
- data/lib/purecloudplatformclientv2/api/routing_api.rb +829 -43
- data/lib/purecloudplatformclientv2/api_client.rb +1 -1
- data/lib/purecloudplatformclientv2/models/additional_message.rb +207 -0
- data/lib/purecloudplatformclientv2/models/aggregate_metric_data.rb +2 -2
- data/lib/purecloudplatformclientv2/models/analytics_participant.rb +41 -1
- data/lib/purecloudplatformclientv2/models/analytics_query_predicate.rb +4 -4
- data/lib/purecloudplatformclientv2/models/attachment.rb +5 -0
- data/lib/purecloudplatformclientv2/models/conversation_notification_attachment.rb +326 -0
- data/lib/purecloudplatformclientv2/models/conversation_notification_draft_attachments.rb +326 -0
- data/lib/purecloudplatformclientv2/models/conversation_notification_email.rb +28 -1
- data/lib/purecloudplatformclientv2/models/conversation_notification_emails.rb +28 -1
- data/lib/purecloudplatformclientv2/models/data_table.rb +306 -0
- data/lib/purecloudplatformclientv2/models/data_table_row_entity_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/data_tables_domain_entity_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/document.rb +12 -12
- data/lib/purecloudplatformclientv2/models/domain_edge_software_version_dto.rb +12 -12
- data/lib/purecloudplatformclientv2/models/domain_organization_role.rb +12 -12
- data/lib/purecloudplatformclientv2/models/domain_organization_role_create.rb +12 -12
- data/lib/purecloudplatformclientv2/models/domain_organization_role_update.rb +12 -12
- data/lib/purecloudplatformclientv2/models/email.rb +32 -4
- data/lib/purecloudplatformclientv2/models/email_conversation_notification_attachment.rb +326 -0
- data/lib/purecloudplatformclientv2/models/email_conversation_notification_email_media_participant.rb +31 -4
- data/lib/purecloudplatformclientv2/models/email_conversation_notification_participants.rb +31 -4
- data/lib/purecloudplatformclientv2/models/email_media_participant.rb +32 -4
- data/lib/purecloudplatformclientv2/models/fax_document.rb +12 -12
- data/lib/purecloudplatformclientv2/models/json_node.rb +72 -72
- data/lib/purecloudplatformclientv2/models/message_conversation.rb +309 -0
- data/lib/purecloudplatformclientv2/models/message_conversation_entity_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/message_data.rb +572 -0
- data/lib/purecloudplatformclientv2/models/message_media_participant.rb +1068 -0
- data/lib/purecloudplatformclientv2/models/question.rb +13 -13
- data/lib/purecloudplatformclientv2/models/recipient.rb +383 -0
- data/lib/purecloudplatformclientv2/models/recipient_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/sms_address_provision.rb +440 -0
- data/lib/purecloudplatformclientv2/models/sms_available_phone_number.rb +465 -0
- data/lib/purecloudplatformclientv2/models/sms_available_phone_number_entity_listing.rb +203 -0
- data/lib/purecloudplatformclientv2/models/sms_phone_number.rb +546 -0
- data/lib/purecloudplatformclientv2/models/sms_phone_number_entity_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/sms_phone_number_provision.rb +360 -0
- data/lib/purecloudplatformclientv2/models/text_message_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/version.rb +1 -1
- metadata +42 -2
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
PureCloud Platform API
|
|
3
|
+
|
|
4
|
+
With the PureCloud Platform API, you can control all aspects of your PureCloud environment. With the APIs you can access the system configuration, manage conversations and more.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v2
|
|
7
|
+
Contact: DeveloperEvangelists@genesys.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
License: ININ
|
|
11
|
+
http://www.inin.com
|
|
12
|
+
|
|
13
|
+
Terms of Service: https://developer.mypurecloud.com/tos
|
|
14
|
+
|
|
15
|
+
=end
|
|
16
|
+
|
|
17
|
+
require 'date'
|
|
18
|
+
|
|
19
|
+
module PureCloud
|
|
20
|
+
class RecipientListing
|
|
21
|
+
attr_accessor :entities
|
|
22
|
+
|
|
23
|
+
attr_accessor :page_size
|
|
24
|
+
|
|
25
|
+
attr_accessor :page_number
|
|
26
|
+
|
|
27
|
+
attr_accessor :total
|
|
28
|
+
|
|
29
|
+
attr_accessor :self_uri
|
|
30
|
+
|
|
31
|
+
attr_accessor :first_uri
|
|
32
|
+
|
|
33
|
+
attr_accessor :previous_uri
|
|
34
|
+
|
|
35
|
+
attr_accessor :next_uri
|
|
36
|
+
|
|
37
|
+
attr_accessor :last_uri
|
|
38
|
+
|
|
39
|
+
attr_accessor :page_count
|
|
40
|
+
|
|
41
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
42
|
+
def self.attribute_map
|
|
43
|
+
{
|
|
44
|
+
|
|
45
|
+
:'entities' => :'entities',
|
|
46
|
+
|
|
47
|
+
:'page_size' => :'pageSize',
|
|
48
|
+
|
|
49
|
+
:'page_number' => :'pageNumber',
|
|
50
|
+
|
|
51
|
+
:'total' => :'total',
|
|
52
|
+
|
|
53
|
+
:'self_uri' => :'selfUri',
|
|
54
|
+
|
|
55
|
+
:'first_uri' => :'firstUri',
|
|
56
|
+
|
|
57
|
+
:'previous_uri' => :'previousUri',
|
|
58
|
+
|
|
59
|
+
:'next_uri' => :'nextUri',
|
|
60
|
+
|
|
61
|
+
:'last_uri' => :'lastUri',
|
|
62
|
+
|
|
63
|
+
:'page_count' => :'pageCount'
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Attribute type mapping.
|
|
69
|
+
def self.swagger_types
|
|
70
|
+
{
|
|
71
|
+
|
|
72
|
+
:'entities' => :'Array<Recipient>',
|
|
73
|
+
|
|
74
|
+
:'page_size' => :'Integer',
|
|
75
|
+
|
|
76
|
+
:'page_number' => :'Integer',
|
|
77
|
+
|
|
78
|
+
:'total' => :'Integer',
|
|
79
|
+
|
|
80
|
+
:'self_uri' => :'String',
|
|
81
|
+
|
|
82
|
+
:'first_uri' => :'String',
|
|
83
|
+
|
|
84
|
+
:'previous_uri' => :'String',
|
|
85
|
+
|
|
86
|
+
:'next_uri' => :'String',
|
|
87
|
+
|
|
88
|
+
:'last_uri' => :'String',
|
|
89
|
+
|
|
90
|
+
:'page_count' => :'Integer'
|
|
91
|
+
|
|
92
|
+
}
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Initializes the object
|
|
96
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
97
|
+
def initialize(attributes = {})
|
|
98
|
+
return unless attributes.is_a?(Hash)
|
|
99
|
+
|
|
100
|
+
# convert string to symbol for hash key
|
|
101
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
if attributes.has_key?(:'entities')
|
|
105
|
+
|
|
106
|
+
if (value = attributes[:'entities']).is_a?(Array)
|
|
107
|
+
self.entities = value
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
if attributes.has_key?(:'pageSize')
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
self.page_size = attributes[:'pageSize']
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
if attributes.has_key?(:'pageNumber')
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
self.page_number = attributes[:'pageNumber']
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
if attributes.has_key?(:'total')
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
self.total = attributes[:'total']
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
if attributes.has_key?(:'selfUri')
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
self.self_uri = attributes[:'selfUri']
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
if attributes.has_key?(:'firstUri')
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
self.first_uri = attributes[:'firstUri']
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
if attributes.has_key?(:'previousUri')
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
self.previous_uri = attributes[:'previousUri']
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
if attributes.has_key?(:'nextUri')
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
self.next_uri = attributes[:'nextUri']
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
if attributes.has_key?(:'lastUri')
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
self.last_uri = attributes[:'lastUri']
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
if attributes.has_key?(:'pageCount')
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
self.page_count = attributes[:'pageCount']
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
199
|
+
# @return Array for valid properies with the reasons
|
|
200
|
+
def list_invalid_properties
|
|
201
|
+
invalid_properties = Array.new
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
return invalid_properties
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
# Check to see if the all the properties in the model are valid
|
|
208
|
+
# @return true if the model is valid
|
|
209
|
+
def valid?
|
|
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
|
+
end
|
|
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
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# Checks equality by comparing each attribute.
|
|
305
|
+
# @param [Object] Object to be compared
|
|
306
|
+
def ==(o)
|
|
307
|
+
return true if self.equal?(o)
|
|
308
|
+
self.class == o.class &&
|
|
309
|
+
entities == o.entities &&
|
|
310
|
+
page_size == o.page_size &&
|
|
311
|
+
page_number == o.page_number &&
|
|
312
|
+
total == o.total &&
|
|
313
|
+
self_uri == o.self_uri &&
|
|
314
|
+
first_uri == o.first_uri &&
|
|
315
|
+
previous_uri == o.previous_uri &&
|
|
316
|
+
next_uri == o.next_uri &&
|
|
317
|
+
last_uri == o.last_uri &&
|
|
318
|
+
page_count == o.page_count
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
# @see the `==` method
|
|
322
|
+
# @param [Object] Object to be compared
|
|
323
|
+
def eql?(o)
|
|
324
|
+
self == o
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
# Calculates hash code according to all attributes.
|
|
328
|
+
# @return [Fixnum] Hash code
|
|
329
|
+
def hash
|
|
330
|
+
[entities, page_size, page_number, total, self_uri, first_uri, previous_uri, next_uri, last_uri, page_count].hash
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
# build the object from hash
|
|
334
|
+
def build_from_hash(attributes)
|
|
335
|
+
return nil unless attributes.is_a?(Hash)
|
|
336
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
337
|
+
if type =~ /^Array<(.*)>/i
|
|
338
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
339
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
|
340
|
+
else
|
|
341
|
+
#TODO show warning in debug mode
|
|
342
|
+
end
|
|
343
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
344
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
345
|
+
else
|
|
346
|
+
# data not found in attributes(hash), not an issue as the data can be optional
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
self
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
def _deserialize(type, value)
|
|
354
|
+
case type.to_sym
|
|
355
|
+
when :DateTime
|
|
356
|
+
DateTime.parse(value)
|
|
357
|
+
when :Date
|
|
358
|
+
Date.parse(value)
|
|
359
|
+
when :String
|
|
360
|
+
value.to_s
|
|
361
|
+
when :Integer
|
|
362
|
+
value.to_i
|
|
363
|
+
when :Float
|
|
364
|
+
value.to_f
|
|
365
|
+
when :BOOLEAN
|
|
366
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
|
367
|
+
true
|
|
368
|
+
else
|
|
369
|
+
false
|
|
370
|
+
end
|
|
371
|
+
when :Object
|
|
372
|
+
# generic object (usually a Hash), return directly
|
|
373
|
+
value
|
|
374
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
375
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
376
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
377
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
|
378
|
+
k_type = Regexp.last_match[:k_type]
|
|
379
|
+
v_type = Regexp.last_match[:v_type]
|
|
380
|
+
{}.tap do |hash|
|
|
381
|
+
value.each do |k, v|
|
|
382
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
383
|
+
end
|
|
384
|
+
end
|
|
385
|
+
else # model
|
|
386
|
+
_model = Object.const_get("PureCloud").const_get(type).new
|
|
387
|
+
_model.build_from_hash(value)
|
|
388
|
+
end
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
def to_s
|
|
392
|
+
to_hash.to_s
|
|
393
|
+
end
|
|
394
|
+
|
|
395
|
+
# to_body is an alias to to_body (backward compatibility))
|
|
396
|
+
def to_body
|
|
397
|
+
to_hash
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
# return the object in the form of hash
|
|
401
|
+
def to_hash
|
|
402
|
+
hash = {}
|
|
403
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
404
|
+
value = self.send(attr)
|
|
405
|
+
next if value.nil?
|
|
406
|
+
hash[param] = _to_hash(value)
|
|
407
|
+
end
|
|
408
|
+
hash
|
|
409
|
+
end
|
|
410
|
+
|
|
411
|
+
# Method to output non-array value in the form of hash
|
|
412
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
413
|
+
def _to_hash(value)
|
|
414
|
+
if value.is_a?(Array)
|
|
415
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
416
|
+
elsif value.is_a?(Hash)
|
|
417
|
+
{}.tap do |hash|
|
|
418
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
419
|
+
end
|
|
420
|
+
elsif value.respond_to? :to_hash
|
|
421
|
+
value.to_hash
|
|
422
|
+
else
|
|
423
|
+
value
|
|
424
|
+
end
|
|
425
|
+
end
|
|
426
|
+
|
|
427
|
+
end
|
|
428
|
+
end
|
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
PureCloud Platform API
|
|
3
|
+
|
|
4
|
+
With the PureCloud Platform API, you can control all aspects of your PureCloud environment. With the APIs you can access the system configuration, manage conversations and more.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v2
|
|
7
|
+
Contact: DeveloperEvangelists@genesys.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
|
|
10
|
+
License: ININ
|
|
11
|
+
http://www.inin.com
|
|
12
|
+
|
|
13
|
+
Terms of Service: https://developer.mypurecloud.com/tos
|
|
14
|
+
|
|
15
|
+
=end
|
|
16
|
+
|
|
17
|
+
require 'date'
|
|
18
|
+
|
|
19
|
+
module PureCloud
|
|
20
|
+
class SmsAddressProvision
|
|
21
|
+
# The globally unique identifier for the object.
|
|
22
|
+
attr_accessor :id
|
|
23
|
+
|
|
24
|
+
# Name associated with this address
|
|
25
|
+
attr_accessor :name
|
|
26
|
+
|
|
27
|
+
# The number and street address where this address is located.
|
|
28
|
+
attr_accessor :street
|
|
29
|
+
|
|
30
|
+
# The city in which this address is in
|
|
31
|
+
attr_accessor :city
|
|
32
|
+
|
|
33
|
+
# The state or region this address is in
|
|
34
|
+
attr_accessor :region
|
|
35
|
+
|
|
36
|
+
# The postal code this address is in
|
|
37
|
+
attr_accessor :postal_code
|
|
38
|
+
|
|
39
|
+
# The ISO country code of this address
|
|
40
|
+
attr_accessor :country_code
|
|
41
|
+
|
|
42
|
+
# This is used when the address is created. If the value is not set or true, then the system will, if necessary, auto-correct the address you provide. Set this value to false if the system should not auto-correct the address.
|
|
43
|
+
attr_accessor :auto_correct_address
|
|
44
|
+
|
|
45
|
+
# The URI for this object
|
|
46
|
+
attr_accessor :self_uri
|
|
47
|
+
|
|
48
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
|
+
def self.attribute_map
|
|
50
|
+
{
|
|
51
|
+
|
|
52
|
+
:'id' => :'id',
|
|
53
|
+
|
|
54
|
+
:'name' => :'name',
|
|
55
|
+
|
|
56
|
+
:'street' => :'street',
|
|
57
|
+
|
|
58
|
+
:'city' => :'city',
|
|
59
|
+
|
|
60
|
+
:'region' => :'region',
|
|
61
|
+
|
|
62
|
+
:'postal_code' => :'postalCode',
|
|
63
|
+
|
|
64
|
+
:'country_code' => :'countryCode',
|
|
65
|
+
|
|
66
|
+
:'auto_correct_address' => :'autoCorrectAddress',
|
|
67
|
+
|
|
68
|
+
:'self_uri' => :'selfUri'
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# Attribute type mapping.
|
|
74
|
+
def self.swagger_types
|
|
75
|
+
{
|
|
76
|
+
|
|
77
|
+
:'id' => :'String',
|
|
78
|
+
|
|
79
|
+
:'name' => :'String',
|
|
80
|
+
|
|
81
|
+
:'street' => :'String',
|
|
82
|
+
|
|
83
|
+
:'city' => :'String',
|
|
84
|
+
|
|
85
|
+
:'region' => :'String',
|
|
86
|
+
|
|
87
|
+
:'postal_code' => :'String',
|
|
88
|
+
|
|
89
|
+
:'country_code' => :'String',
|
|
90
|
+
|
|
91
|
+
:'auto_correct_address' => :'BOOLEAN',
|
|
92
|
+
|
|
93
|
+
:'self_uri' => :'String'
|
|
94
|
+
|
|
95
|
+
}
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
# Initializes the object
|
|
99
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
100
|
+
def initialize(attributes = {})
|
|
101
|
+
return unless attributes.is_a?(Hash)
|
|
102
|
+
|
|
103
|
+
# convert string to symbol for hash key
|
|
104
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
if attributes.has_key?(:'id')
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
self.id = attributes[:'id']
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
if attributes.has_key?(:'name')
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
self.name = attributes[:'name']
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
if attributes.has_key?(:'street')
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
self.street = attributes[:'street']
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
if attributes.has_key?(:'city')
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
self.city = attributes[:'city']
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
if attributes.has_key?(:'region')
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
self.region = attributes[:'region']
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
if attributes.has_key?(:'postalCode')
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
self.postal_code = attributes[:'postalCode']
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
if attributes.has_key?(:'countryCode')
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
self.country_code = attributes[:'countryCode']
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
if attributes.has_key?(:'autoCorrectAddress')
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
self.auto_correct_address = attributes[:'autoCorrectAddress']
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
if attributes.has_key?(:'selfUri')
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
self.self_uri = attributes[:'selfUri']
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
191
|
+
# @return Array for valid properies with the reasons
|
|
192
|
+
def list_invalid_properties
|
|
193
|
+
invalid_properties = Array.new
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
return invalid_properties
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
# Check to see if the all the properties in the model are valid
|
|
200
|
+
# @return true if the model is valid
|
|
201
|
+
def valid?
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
if @name.nil?
|
|
209
|
+
return false
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
if @street.nil?
|
|
218
|
+
return false
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
if @city.nil?
|
|
227
|
+
return false
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
if @region.nil?
|
|
236
|
+
return false
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
if @postal_code.nil?
|
|
245
|
+
return false
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
if @country_code.nil?
|
|
254
|
+
return false
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
# Checks equality by comparing each attribute.
|
|
318
|
+
# @param [Object] Object to be compared
|
|
319
|
+
def ==(o)
|
|
320
|
+
return true if self.equal?(o)
|
|
321
|
+
self.class == o.class &&
|
|
322
|
+
id == o.id &&
|
|
323
|
+
name == o.name &&
|
|
324
|
+
street == o.street &&
|
|
325
|
+
city == o.city &&
|
|
326
|
+
region == o.region &&
|
|
327
|
+
postal_code == o.postal_code &&
|
|
328
|
+
country_code == o.country_code &&
|
|
329
|
+
auto_correct_address == o.auto_correct_address &&
|
|
330
|
+
self_uri == o.self_uri
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
# @see the `==` method
|
|
334
|
+
# @param [Object] Object to be compared
|
|
335
|
+
def eql?(o)
|
|
336
|
+
self == o
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
# Calculates hash code according to all attributes.
|
|
340
|
+
# @return [Fixnum] Hash code
|
|
341
|
+
def hash
|
|
342
|
+
[id, name, street, city, region, postal_code, country_code, auto_correct_address, self_uri].hash
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
# build the object from hash
|
|
346
|
+
def build_from_hash(attributes)
|
|
347
|
+
return nil unless attributes.is_a?(Hash)
|
|
348
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
349
|
+
if type =~ /^Array<(.*)>/i
|
|
350
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
351
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
|
352
|
+
else
|
|
353
|
+
#TODO show warning in debug mode
|
|
354
|
+
end
|
|
355
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
356
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
357
|
+
else
|
|
358
|
+
# data not found in attributes(hash), not an issue as the data can be optional
|
|
359
|
+
end
|
|
360
|
+
end
|
|
361
|
+
|
|
362
|
+
self
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
def _deserialize(type, value)
|
|
366
|
+
case type.to_sym
|
|
367
|
+
when :DateTime
|
|
368
|
+
DateTime.parse(value)
|
|
369
|
+
when :Date
|
|
370
|
+
Date.parse(value)
|
|
371
|
+
when :String
|
|
372
|
+
value.to_s
|
|
373
|
+
when :Integer
|
|
374
|
+
value.to_i
|
|
375
|
+
when :Float
|
|
376
|
+
value.to_f
|
|
377
|
+
when :BOOLEAN
|
|
378
|
+
if value.to_s =~ /^(true|t|yes|y|1)$/i
|
|
379
|
+
true
|
|
380
|
+
else
|
|
381
|
+
false
|
|
382
|
+
end
|
|
383
|
+
when :Object
|
|
384
|
+
# generic object (usually a Hash), return directly
|
|
385
|
+
value
|
|
386
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
387
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
388
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
389
|
+
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
|
390
|
+
k_type = Regexp.last_match[:k_type]
|
|
391
|
+
v_type = Regexp.last_match[:v_type]
|
|
392
|
+
{}.tap do |hash|
|
|
393
|
+
value.each do |k, v|
|
|
394
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
395
|
+
end
|
|
396
|
+
end
|
|
397
|
+
else # model
|
|
398
|
+
_model = Object.const_get("PureCloud").const_get(type).new
|
|
399
|
+
_model.build_from_hash(value)
|
|
400
|
+
end
|
|
401
|
+
end
|
|
402
|
+
|
|
403
|
+
def to_s
|
|
404
|
+
to_hash.to_s
|
|
405
|
+
end
|
|
406
|
+
|
|
407
|
+
# to_body is an alias to to_body (backward compatibility))
|
|
408
|
+
def to_body
|
|
409
|
+
to_hash
|
|
410
|
+
end
|
|
411
|
+
|
|
412
|
+
# return the object in the form of hash
|
|
413
|
+
def to_hash
|
|
414
|
+
hash = {}
|
|
415
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
416
|
+
value = self.send(attr)
|
|
417
|
+
next if value.nil?
|
|
418
|
+
hash[param] = _to_hash(value)
|
|
419
|
+
end
|
|
420
|
+
hash
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
# Method to output non-array value in the form of hash
|
|
424
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
425
|
+
def _to_hash(value)
|
|
426
|
+
if value.is_a?(Array)
|
|
427
|
+
value.compact.map{ |v| _to_hash(v) }
|
|
428
|
+
elsif value.is_a?(Hash)
|
|
429
|
+
{}.tap do |hash|
|
|
430
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
431
|
+
end
|
|
432
|
+
elsif value.respond_to? :to_hash
|
|
433
|
+
value.to_hash
|
|
434
|
+
else
|
|
435
|
+
value
|
|
436
|
+
end
|
|
437
|
+
end
|
|
438
|
+
|
|
439
|
+
end
|
|
440
|
+
end
|