purecloudplatformclientv2 51.0.0 → 52.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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/docs/AnalyticsEvaluation.md +1 -1
  4. data/docs/ArchitectApi.md +2 -2
  5. data/docs/ArrayNode.md +5 -5
  6. data/docs/Campaign.md +1 -0
  7. data/docs/CertificateDetails.md +1 -1
  8. data/docs/ContactList.md +1 -0
  9. data/docs/DncList.md +1 -0
  10. data/docs/DncListCreate.md +1 -0
  11. data/docs/Document.md +1 -1
  12. data/docs/FaxDocument.md +1 -1
  13. data/docs/GroupsApi.md +2 -0
  14. data/docs/JourneyCustomer.md +1 -1
  15. data/docs/JourneyCustomerSession.md +1 -1
  16. data/docs/OutboundApi.md +66 -0
  17. data/docs/TelephonyProvidersEdgeApi.md +0 -339
  18. data/docs/UsersApi.md +2 -1
  19. data/lib/purecloudplatformclientv2.rb +0 -1
  20. data/lib/purecloudplatformclientv2/api/architect_api.rb +4 -4
  21. data/lib/purecloudplatformclientv2/api/groups_api.rb +9 -0
  22. data/lib/purecloudplatformclientv2/api/outbound_api.rb +65 -0
  23. data/lib/purecloudplatformclientv2/api/telephony_providers_edge_api.rb +0 -360
  24. data/lib/purecloudplatformclientv2/api_client.rb +1 -1
  25. data/lib/purecloudplatformclientv2/models/aggregate_metric_data.rb +2 -2
  26. data/lib/purecloudplatformclientv2/models/analytics_evaluation.rb +13 -13
  27. data/lib/purecloudplatformclientv2/models/analytics_query_predicate.rb +2 -2
  28. data/lib/purecloudplatformclientv2/models/array_node.rb +65 -65
  29. data/lib/purecloudplatformclientv2/models/campaign.rb +27 -1
  30. data/lib/purecloudplatformclientv2/models/certificate_details.rb +13 -13
  31. data/lib/purecloudplatformclientv2/models/contact_list.rb +27 -1
  32. data/lib/purecloudplatformclientv2/models/dnc_list.rb +27 -1
  33. data/lib/purecloudplatformclientv2/models/dnc_list_create.rb +27 -1
  34. data/lib/purecloudplatformclientv2/models/document.rb +12 -12
  35. data/lib/purecloudplatformclientv2/models/fax_document.rb +12 -12
  36. data/lib/purecloudplatformclientv2/models/journey_customer.rb +8 -8
  37. data/lib/purecloudplatformclientv2/models/journey_customer_session.rb +1 -1
  38. data/lib/purecloudplatformclientv2/models/observation_metric_data.rb +2 -2
  39. data/lib/purecloudplatformclientv2/version.rb +1 -1
  40. metadata +2 -4
  41. data/docs/EndpointEntityListing.md +0 -22
  42. data/lib/purecloudplatformclientv2/models/endpoint_entity_listing.rb +0 -428
@@ -22,7 +22,7 @@ module PureCloud
22
22
  attr_accessor :id
23
23
 
24
24
  # The type of the customerId within the Journey System (e.g. cookie).
25
- attr_accessor :type
25
+ attr_accessor :id_type
26
26
 
27
27
  # Attribute mapping from ruby-style variable name to JSON key.
28
28
  def self.attribute_map
@@ -30,7 +30,7 @@ module PureCloud
30
30
 
31
31
  :'id' => :'id',
32
32
 
33
- :'type' => :'type'
33
+ :'id_type' => :'idType'
34
34
 
35
35
  }
36
36
  end
@@ -41,7 +41,7 @@ module PureCloud
41
41
 
42
42
  :'id' => :'String',
43
43
 
44
- :'type' => :'String'
44
+ :'id_type' => :'String'
45
45
 
46
46
  }
47
47
  end
@@ -64,10 +64,10 @@ module PureCloud
64
64
  end
65
65
 
66
66
 
67
- if attributes.has_key?(:'type')
67
+ if attributes.has_key?(:'idType')
68
68
 
69
69
 
70
- self.type = attributes[:'type']
70
+ self.id_type = attributes[:'idType']
71
71
 
72
72
 
73
73
  end
@@ -98,7 +98,7 @@ module PureCloud
98
98
 
99
99
 
100
100
 
101
- if @type.nil?
101
+ if @id_type.nil?
102
102
  return false
103
103
  end
104
104
 
@@ -125,7 +125,7 @@ module PureCloud
125
125
  return true if self.equal?(o)
126
126
  self.class == o.class &&
127
127
  id == o.id &&
128
- type == o.type
128
+ id_type == o.id_type
129
129
  end
130
130
 
131
131
  # @see the `==` method
@@ -137,7 +137,7 @@ module PureCloud
137
137
  # Calculates hash code according to all attributes.
138
138
  # @return [Fixnum] Hash code
139
139
  def hash
140
- [id, type].hash
140
+ [id, id_type].hash
141
141
  end
142
142
 
143
143
  # build the object from hash
@@ -21,7 +21,7 @@ module PureCloud
21
21
  # An ID of a Customer/User's session within the Journey System at a point-in-time
22
22
  attr_accessor :id
23
23
 
24
- # The type of the Customer/User's session ID within the Journey System (e.g. web, app)
24
+ # The type of the Customer/User's session within the Journey System (e.g. web, app)
25
25
  attr_accessor :type
26
26
 
27
27
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -103,7 +103,7 @@ module PureCloud
103
103
 
104
104
 
105
105
 
106
- allowed_values = ["tSegmentDuration", "tConversationDuration", "oTotalCriticalScore", "oTotalScore", "nEvaluations", "tAbandon", "tIvr", "tAnswered", "tFlowOut", "tAcd", "tTalk", "tHeld", "tTalkComplete", "tHeldComplete", "tAcw", "tHandle", "tContacting", "tDialing", "tWait", "tAgentRoutingStatus", "tOrganizationPresence", "tSystemPresence", "tUserResponseTime", "tAgentResponseTime", "tVoicemail", "nStateTransitionError", "nOffered", "nOverSla", "nTransferred", "nBlindTransferred", "nConsultTransferred", "nConsult", "nConnected", "tAlert", "tNotResponding", "nOutbound", "nOutboundAttempted", "nOutboundConnected", "nOutboundAbandoned", "nError", "oServiceTarget", "oServiceLevel", "tActive", "tInactive", "oActiveUsers", "oMemberUsers", "oActiveQueues", "oMemberQueues", "oInteracting", "oWaiting", "oOnQueueUsers", "oOffQueueUsers", "oUserPresences", "oUserRoutingStatuses", "nSurveysSent", "nSurveysStarted", "nSurveysAbandoned", "nSurveysExpired", "nSurveyErrors", "nSurveyResponses", "nSurveyAnswerResponses", "oSurveyTotalScore", "oSurveyQuestionGroupScore", "nSurveyQuestionGroupResponses", "oSurveyQuestionScore", "nSurveyQuestionResponses", "nSurveyNpsResponses", "nSurveyNpsPromoters", "nSurveyNpsDetractors", "nFlow", "tFlowDisconnect", "tFlowExit", "tFlow", "tFlowOutcome", "nFlowOutcome", "nFlowOutcomeFailed"]
106
+ allowed_values = ["tSegmentDuration", "tConversationDuration", "oTotalCriticalScore", "oTotalScore", "nEvaluations", "tAbandon", "tIvr", "tAnswered", "tFlowOut", "tAcd", "tTalk", "tHeld", "tTalkComplete", "tHeldComplete", "tAcw", "tHandle", "tContacting", "tDialing", "tWait", "tAgentRoutingStatus", "tOrganizationPresence", "tSystemPresence", "tUserResponseTime", "tAgentResponseTime", "tVoicemail", "nStateTransitionError", "nOffered", "nOverSla", "nTransferred", "nBlindTransferred", "nConsultTransferred", "nConsult", "nConnected", "tAlert", "tNotResponding", "nOutbound", "nOutboundAttempted", "nOutboundConnected", "nOutboundAbandoned", "nError", "oServiceTarget", "oServiceLevel", "tActive", "tInactive", "oActiveUsers", "oMemberUsers", "oActiveQueues", "oMemberQueues", "oInteracting", "oWaiting", "oOnQueueUsers", "oOffQueueUsers", "oUserPresences", "oUserRoutingStatuses", "nSurveysSent", "nSurveysStarted", "nSurveysAbandoned", "nSurveysExpired", "nSurveyErrors", "nSurveyResponses", "nSurveyAnswerResponses", "oSurveyTotalScore", "oSurveyQuestionGroupScore", "nSurveyQuestionGroupResponses", "oSurveyQuestionScore", "nSurveyQuestionResponses", "nSurveyNpsResponses", "nSurveyNpsPromoters", "nSurveyNpsDetractors", "nFlow", "tFlowDisconnect", "tFlowExit", "tFlow", "oFlow", "tFlowOutcome", "nFlowOutcome", "nFlowOutcomeFailed"]
107
107
  if @metric && !allowed_values.include?(@metric)
108
108
  return false
109
109
  end
@@ -125,7 +125,7 @@ module PureCloud
125
125
  # Custom attribute writer method checking allowed values (enum).
126
126
  # @param [Object] metric Object to be assigned
127
127
  def metric=(metric)
128
- allowed_values = ["tSegmentDuration", "tConversationDuration", "oTotalCriticalScore", "oTotalScore", "nEvaluations", "tAbandon", "tIvr", "tAnswered", "tFlowOut", "tAcd", "tTalk", "tHeld", "tTalkComplete", "tHeldComplete", "tAcw", "tHandle", "tContacting", "tDialing", "tWait", "tAgentRoutingStatus", "tOrganizationPresence", "tSystemPresence", "tUserResponseTime", "tAgentResponseTime", "tVoicemail", "nStateTransitionError", "nOffered", "nOverSla", "nTransferred", "nBlindTransferred", "nConsultTransferred", "nConsult", "nConnected", "tAlert", "tNotResponding", "nOutbound", "nOutboundAttempted", "nOutboundConnected", "nOutboundAbandoned", "nError", "oServiceTarget", "oServiceLevel", "tActive", "tInactive", "oActiveUsers", "oMemberUsers", "oActiveQueues", "oMemberQueues", "oInteracting", "oWaiting", "oOnQueueUsers", "oOffQueueUsers", "oUserPresences", "oUserRoutingStatuses", "nSurveysSent", "nSurveysStarted", "nSurveysAbandoned", "nSurveysExpired", "nSurveyErrors", "nSurveyResponses", "nSurveyAnswerResponses", "oSurveyTotalScore", "oSurveyQuestionGroupScore", "nSurveyQuestionGroupResponses", "oSurveyQuestionScore", "nSurveyQuestionResponses", "nSurveyNpsResponses", "nSurveyNpsPromoters", "nSurveyNpsDetractors", "nFlow", "tFlowDisconnect", "tFlowExit", "tFlow", "tFlowOutcome", "nFlowOutcome", "nFlowOutcomeFailed"]
128
+ allowed_values = ["tSegmentDuration", "tConversationDuration", "oTotalCriticalScore", "oTotalScore", "nEvaluations", "tAbandon", "tIvr", "tAnswered", "tFlowOut", "tAcd", "tTalk", "tHeld", "tTalkComplete", "tHeldComplete", "tAcw", "tHandle", "tContacting", "tDialing", "tWait", "tAgentRoutingStatus", "tOrganizationPresence", "tSystemPresence", "tUserResponseTime", "tAgentResponseTime", "tVoicemail", "nStateTransitionError", "nOffered", "nOverSla", "nTransferred", "nBlindTransferred", "nConsultTransferred", "nConsult", "nConnected", "tAlert", "tNotResponding", "nOutbound", "nOutboundAttempted", "nOutboundConnected", "nOutboundAbandoned", "nError", "oServiceTarget", "oServiceLevel", "tActive", "tInactive", "oActiveUsers", "oMemberUsers", "oActiveQueues", "oMemberQueues", "oInteracting", "oWaiting", "oOnQueueUsers", "oOffQueueUsers", "oUserPresences", "oUserRoutingStatuses", "nSurveysSent", "nSurveysStarted", "nSurveysAbandoned", "nSurveysExpired", "nSurveyErrors", "nSurveyResponses", "nSurveyAnswerResponses", "oSurveyTotalScore", "oSurveyQuestionGroupScore", "nSurveyQuestionGroupResponses", "oSurveyQuestionScore", "nSurveyQuestionResponses", "nSurveyNpsResponses", "nSurveyNpsPromoters", "nSurveyNpsDetractors", "nFlow", "tFlowDisconnect", "tFlowExit", "tFlow", "oFlow", "tFlowOutcome", "nFlowOutcome", "nFlowOutcomeFailed"]
129
129
  if metric && !allowed_values.include?(metric)
130
130
  fail ArgumentError, "invalid value for 'metric', must be one of #{allowed_values}."
131
131
  end
@@ -15,5 +15,5 @@ Terms of Service: https://developer.mypurecloud.com/tos
15
15
  =end
16
16
 
17
17
  module PureCloud
18
- VERSION = "51.0.0"
18
+ VERSION = "52.0.0"
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purecloudplatformclientv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 51.0.0
4
+ version: 52.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genesys Developer Evangelists
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-22 00:00:00.000000000 Z
11
+ date: 2019-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -783,7 +783,6 @@ files:
783
783
  - docs/EncryptionKey.md
784
784
  - docs/EncryptionKeyEntityListing.md
785
785
  - docs/Endpoint.md
786
- - docs/EndpointEntityListing.md
787
786
  - docs/Entity.md
788
787
  - docs/Entry.md
789
788
  - docs/ErrorBody.md
@@ -2274,7 +2273,6 @@ files:
2274
2273
  - lib/purecloudplatformclientv2/models/encryption_key.rb
2275
2274
  - lib/purecloudplatformclientv2/models/encryption_key_entity_listing.rb
2276
2275
  - lib/purecloudplatformclientv2/models/endpoint.rb
2277
- - lib/purecloudplatformclientv2/models/endpoint_entity_listing.rb
2278
2276
  - lib/purecloudplatformclientv2/models/entity.rb
2279
2277
  - lib/purecloudplatformclientv2/models/entry.rb
2280
2278
  - lib/purecloudplatformclientv2/models/error_body.rb
@@ -1,22 +0,0 @@
1
- ---
2
- title: EndpointEntityListing
3
- ---
4
- ## PureCloud::EndpointEntityListing
5
-
6
- ## Properties
7
-
8
- |Name | Type | Description | Notes|
9
- |------------ | ------------- | ------------- | -------------|
10
- | **entities** | [**Array<Endpoint>**](Endpoint.html) | | [optional] |
11
- | **page_size** | **Integer** | | [optional] |
12
- | **page_number** | **Integer** | | [optional] |
13
- | **total** | **Integer** | | [optional] |
14
- | **first_uri** | **String** | | [optional] |
15
- | **self_uri** | **String** | | [optional] |
16
- | **next_uri** | **String** | | [optional] |
17
- | **previous_uri** | **String** | | [optional] |
18
- | **last_uri** | **String** | | [optional] |
19
- | **page_count** | **Integer** | | [optional] |
20
- {: class="table table-striped"}
21
-
22
-
@@ -1,428 +0,0 @@
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 EndpointEntityListing
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 :first_uri
30
-
31
- attr_accessor :self_uri
32
-
33
- attr_accessor :next_uri
34
-
35
- attr_accessor :previous_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
- :'first_uri' => :'firstUri',
54
-
55
- :'self_uri' => :'selfUri',
56
-
57
- :'next_uri' => :'nextUri',
58
-
59
- :'previous_uri' => :'previousUri',
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<Endpoint>',
73
-
74
- :'page_size' => :'Integer',
75
-
76
- :'page_number' => :'Integer',
77
-
78
- :'total' => :'Integer',
79
-
80
- :'first_uri' => :'String',
81
-
82
- :'self_uri' => :'String',
83
-
84
- :'next_uri' => :'String',
85
-
86
- :'previous_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?(:'firstUri')
143
-
144
-
145
- self.first_uri = attributes[:'firstUri']
146
-
147
-
148
- end
149
-
150
-
151
- if attributes.has_key?(:'selfUri')
152
-
153
-
154
- self.self_uri = attributes[:'selfUri']
155
-
156
-
157
- end
158
-
159
-
160
- if attributes.has_key?(:'nextUri')
161
-
162
-
163
- self.next_uri = attributes[:'nextUri']
164
-
165
-
166
- end
167
-
168
-
169
- if attributes.has_key?(:'previousUri')
170
-
171
-
172
- self.previous_uri = attributes[:'previousUri']
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
- first_uri == o.first_uri &&
314
- self_uri == o.self_uri &&
315
- next_uri == o.next_uri &&
316
- previous_uri == o.previous_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, first_uri, self_uri, next_uri, previous_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