freeclimb 1.0.3 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +89 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +11 -5
  5. data/docs/AccountRequest.md +1 -3
  6. data/docs/ApplicationRequest.md +1 -3
  7. data/docs/BuyIncomingNumberRequest.md +1 -3
  8. data/docs/CreateConferenceRequest.md +1 -3
  9. data/docs/DefaultApi.md +22 -38
  10. data/docs/FilterLogsRequest.md +1 -3
  11. data/docs/GetDigits.md +3 -1
  12. data/docs/GetDigitsAllOf.md +3 -1
  13. data/docs/GetSpeech.md +2 -2
  14. data/docs/GetSpeechAllOf.md +2 -2
  15. data/docs/Hangup.md +17 -0
  16. data/docs/HangupAllOf.md +17 -0
  17. data/docs/IncomingNumberRequest.md +1 -3
  18. data/docs/MakeCallRequest.md +3 -3
  19. data/docs/MessageRequest.md +0 -2
  20. data/docs/MessageRequestAllOf.md +0 -2
  21. data/docs/MessageResult.md +1 -1
  22. data/docs/MessageResultAllOf.md +1 -1
  23. data/docs/OutDial.md +3 -1
  24. data/docs/OutDialAllOf.md +3 -1
  25. data/docs/Play.md +3 -1
  26. data/docs/PlayAllOf.md +3 -1
  27. data/docs/QueueRequest.md +1 -3
  28. data/docs/Redirect.md +1 -1
  29. data/docs/RedirectAllOf.md +1 -1
  30. data/docs/Reject.md +17 -0
  31. data/docs/RejectAllOf.md +17 -0
  32. data/docs/Say.md +2 -2
  33. data/docs/SayAllOf.md +2 -2
  34. data/docs/SendDigits.md +3 -1
  35. data/docs/SendDigitsAllOf.md +3 -1
  36. data/docs/UpdateCallRequest.md +1 -3
  37. data/docs/UpdateConferenceParticipantRequest.md +1 -3
  38. data/docs/UpdateConferenceRequest.md +1 -3
  39. data/freeclimb-2.0.3.gem +0 -0
  40. data/lib/freeclimb.rb +4 -1
  41. data/lib/freeclimb/api/default_api.rb +42 -34
  42. data/lib/freeclimb/api_client.rb +1 -1
  43. data/lib/freeclimb/models/account_request.rb +4 -14
  44. data/lib/freeclimb/models/application_request.rb +4 -14
  45. data/lib/freeclimb/models/buy_incoming_number_request.rb +4 -14
  46. data/lib/freeclimb/models/create_conference_request.rb +4 -14
  47. data/lib/freeclimb/models/filter_logs_request.rb +4 -14
  48. data/lib/freeclimb/models/get_digits.rb +14 -4
  49. data/lib/freeclimb/models/get_digits_all_of.rb +14 -4
  50. data/lib/freeclimb/models/get_speech.rb +8 -8
  51. data/lib/freeclimb/models/get_speech_all_of.rb +8 -8
  52. data/lib/freeclimb/models/hangup.rb +220 -0
  53. data/lib/freeclimb/models/{dequeue_member_request.rb → hangup_all_of.rb} +11 -11
  54. data/lib/freeclimb/models/incoming_number_request.rb +4 -14
  55. data/lib/freeclimb/models/make_call_request.rb +14 -14
  56. data/lib/freeclimb/models/message_request.rb +1 -11
  57. data/lib/freeclimb/models/message_request_all_of.rb +1 -11
  58. data/lib/freeclimb/models/message_result.rb +3 -3
  59. data/lib/freeclimb/models/message_result_all_of.rb +3 -3
  60. data/lib/freeclimb/models/out_dial.rb +14 -4
  61. data/lib/freeclimb/models/out_dial_all_of.rb +14 -4
  62. data/lib/freeclimb/models/play.rb +14 -4
  63. data/lib/freeclimb/models/play_all_of.rb +14 -4
  64. data/lib/freeclimb/models/queue_request.rb +4 -14
  65. data/lib/freeclimb/models/redirect.rb +7 -2
  66. data/lib/freeclimb/models/redirect_all_of.rb +6 -1
  67. data/lib/freeclimb/models/reject.rb +220 -0
  68. data/lib/freeclimb/models/reject_all_of.rb +207 -0
  69. data/lib/freeclimb/models/say.rb +8 -8
  70. data/lib/freeclimb/models/say_all_of.rb +8 -8
  71. data/lib/freeclimb/models/send_digits.rb +14 -4
  72. data/lib/freeclimb/models/send_digits_all_of.rb +14 -4
  73. data/lib/freeclimb/models/update_call_request.rb +4 -14
  74. data/lib/freeclimb/models/update_conference_participant_request.rb +4 -14
  75. data/lib/freeclimb/models/update_conference_request.rb +4 -14
  76. data/lib/freeclimb/version.rb +1 -1
  77. data/spec/api/default_api_spec.rb +9 -24
  78. data/spec/models/hangup_spec.rb +41 -0
  79. data/spec/models/reject_spec.rb +41 -0
  80. metadata +16 -6
  81. data/docs/DequeueMemberRequest.md +0 -17
  82. data/spec/models/dequeue_member_request_spec.rb +0 -34
@@ -29,9 +29,6 @@ module Freeclimb
29
29
  # This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below).
30
30
  attr_accessor :status_callback_url
31
31
 
32
- # The requestId for this request starting with prefix \"RQ\" followed by 40 hexadecimal characters. FreeClimb logs generated while processing this request will include this requestId. If it is not provided, FreeClimb will generate a requestId and return it as a header in the response (e.g., X-Pulse-Request-Id: <requestId>).
33
- attr_accessor :request_id
34
-
35
32
  class EnumAttributeValidator
36
33
  attr_reader :datatype
37
34
  attr_reader :allowable_values
@@ -61,8 +58,7 @@ module Freeclimb
61
58
  :'play_beep' => :'playBeep',
62
59
  :'record' => :'record',
63
60
  :'wait_url' => :'waitUrl',
64
- :'status_callback_url' => :'statusCallbackUrl',
65
- :'request_id' => :'requestId'
61
+ :'status_callback_url' => :'statusCallbackUrl'
66
62
  }
67
63
  end
68
64
 
@@ -73,8 +69,7 @@ module Freeclimb
73
69
  :'play_beep' => :'String',
74
70
  :'record' => :'Boolean',
75
71
  :'wait_url' => :'String',
76
- :'status_callback_url' => :'String',
77
- :'request_id' => :'String'
72
+ :'status_callback_url' => :'String'
78
73
  }
79
74
  end
80
75
 
@@ -120,10 +115,6 @@ module Freeclimb
120
115
  if attributes.key?(:'status_callback_url')
121
116
  self.status_callback_url = attributes[:'status_callback_url']
122
117
  end
123
-
124
- if attributes.key?(:'request_id')
125
- self.request_id = attributes[:'request_id']
126
- end
127
118
  end
128
119
 
129
120
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -160,8 +151,7 @@ module Freeclimb
160
151
  play_beep == o.play_beep &&
161
152
  record == o.record &&
162
153
  wait_url == o.wait_url &&
163
- status_callback_url == o.status_callback_url &&
164
- request_id == o.request_id
154
+ status_callback_url == o.status_callback_url
165
155
  end
166
156
 
167
157
  # @see the `==` method
@@ -173,7 +163,7 @@ module Freeclimb
173
163
  # Calculates hash code according to all attributes.
174
164
  # @return [Integer] Hash code
175
165
  def hash
176
- [_alias, play_beep, record, wait_url, status_callback_url, request_id].hash
166
+ [_alias, play_beep, record, wait_url, status_callback_url].hash
177
167
  end
178
168
 
179
169
  # Builds the object from hash
@@ -17,22 +17,17 @@ module Freeclimb
17
17
  # The filter query for retrieving logs. See **Performance Query Language** below.
18
18
  attr_accessor :pql
19
19
 
20
- # RequestId for this request starting with prefix *RQ* followed by 40 hexadecimal characters. FreeClimb logs generated while processing this request will include this requestId. If it is not provided, FreeClimb will generate a requestId and return it as a header in the response (e.g., X-Pulse-Request-Id: <requestId>).
21
- attr_accessor :request_id
22
-
23
20
  # Attribute mapping from ruby-style variable name to JSON key.
24
21
  def self.attribute_map
25
22
  {
26
- :'pql' => :'pql',
27
- :'request_id' => :'requestId'
23
+ :'pql' => :'pql'
28
24
  }
29
25
  end
30
26
 
31
27
  # Attribute type mapping.
32
28
  def self.openapi_types
33
29
  {
34
- :'pql' => :'String',
35
- :'request_id' => :'String'
30
+ :'pql' => :'String'
36
31
  }
37
32
  end
38
33
 
@@ -60,10 +55,6 @@ module Freeclimb
60
55
  if attributes.key?(:'pql')
61
56
  self.pql = attributes[:'pql']
62
57
  end
63
-
64
- if attributes.key?(:'request_id')
65
- self.request_id = attributes[:'request_id']
66
- end
67
58
  end
68
59
 
69
60
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -89,8 +80,7 @@ module Freeclimb
89
80
  def ==(o)
90
81
  return true if self.equal?(o)
91
82
  self.class == o.class &&
92
- pql == o.pql &&
93
- request_id == o.request_id
83
+ pql == o.pql
94
84
  end
95
85
 
96
86
  # @see the `==` method
@@ -102,7 +92,7 @@ module Freeclimb
102
92
  # Calculates hash code according to all attributes.
103
93
  # @return [Integer] Hash code
104
94
  def hash
105
- [pql, request_id].hash
95
+ [pql].hash
106
96
  end
107
97
 
108
98
  # Builds the object from hash
@@ -39,6 +39,9 @@ module Freeclimb
39
39
  # JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller.
40
40
  attr_accessor :prompts
41
41
 
42
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
43
+ attr_accessor :privacy_mode
44
+
42
45
  # Attribute mapping from ruby-style variable name to JSON key.
43
46
  def self.attribute_map
44
47
  {
@@ -49,7 +52,8 @@ module Freeclimb
49
52
  :'initial_timeout_ms' => :'initialTimeoutMs',
50
53
  :'max_digits' => :'maxDigits',
51
54
  :'min_digits' => :'minDigits',
52
- :'prompts' => :'prompts'
55
+ :'prompts' => :'prompts',
56
+ :'privacy_mode' => :'privacyMode'
53
57
  }
54
58
  end
55
59
 
@@ -63,7 +67,8 @@ module Freeclimb
63
67
  :'initial_timeout_ms' => :'String',
64
68
  :'max_digits' => :'Integer',
65
69
  :'min_digits' => :'Integer',
66
- :'prompts' => :'Array<PerclCommand>'
70
+ :'prompts' => :'Array<PerclCommand>',
71
+ :'privacy_mode' => :'Boolean'
67
72
  }
68
73
  end
69
74
 
@@ -132,6 +137,10 @@ module Freeclimb
132
137
  self.prompts = value
133
138
  end
134
139
  end
140
+
141
+ if attributes.key?(:'privacy_mode')
142
+ self.privacy_mode = attributes[:'privacy_mode']
143
+ end
135
144
  end
136
145
 
137
146
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -164,7 +173,8 @@ module Freeclimb
164
173
  initial_timeout_ms == o.initial_timeout_ms &&
165
174
  max_digits == o.max_digits &&
166
175
  min_digits == o.min_digits &&
167
- prompts == o.prompts && super(o)
176
+ prompts == o.prompts &&
177
+ privacy_mode == o.privacy_mode && super(o)
168
178
  end
169
179
 
170
180
  # @see the `==` method
@@ -176,7 +186,7 @@ module Freeclimb
176
186
  # Calculates hash code according to all attributes.
177
187
  # @return [Integer] Hash code
178
188
  def hash
179
- [action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts].hash
189
+ [action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts, privacy_mode].hash
180
190
  end
181
191
 
182
192
  # Builds the object from hash
@@ -38,6 +38,9 @@ module Freeclimb
38
38
  # JSON array of PerCL commands to nest within the `GetDigits` command. The `Say`, `Play`, and `Pause` commands can be used. The nested actions are executed while FreeClimb is waiting for input from the Caller.
39
39
  attr_accessor :prompts
40
40
 
41
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
42
+ attr_accessor :privacy_mode
43
+
41
44
  # Attribute mapping from ruby-style variable name to JSON key.
42
45
  def self.attribute_map
43
46
  {
@@ -48,7 +51,8 @@ module Freeclimb
48
51
  :'initial_timeout_ms' => :'initialTimeoutMs',
49
52
  :'max_digits' => :'maxDigits',
50
53
  :'min_digits' => :'minDigits',
51
- :'prompts' => :'prompts'
54
+ :'prompts' => :'prompts',
55
+ :'privacy_mode' => :'privacyMode'
52
56
  }
53
57
  end
54
58
 
@@ -62,7 +66,8 @@ module Freeclimb
62
66
  :'initial_timeout_ms' => :'String',
63
67
  :'max_digits' => :'Integer',
64
68
  :'min_digits' => :'Integer',
65
- :'prompts' => :'Array<PerclCommand>'
69
+ :'prompts' => :'Array<PerclCommand>',
70
+ :'privacy_mode' => :'Boolean'
66
71
  }
67
72
  end
68
73
 
@@ -120,6 +125,10 @@ module Freeclimb
120
125
  self.prompts = value
121
126
  end
122
127
  end
128
+
129
+ if attributes.key?(:'privacy_mode')
130
+ self.privacy_mode = attributes[:'privacy_mode']
131
+ end
123
132
  end
124
133
 
125
134
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -152,7 +161,8 @@ module Freeclimb
152
161
  initial_timeout_ms == o.initial_timeout_ms &&
153
162
  max_digits == o.max_digits &&
154
163
  min_digits == o.min_digits &&
155
- prompts == o.prompts
164
+ prompts == o.prompts &&
165
+ privacy_mode == o.privacy_mode
156
166
  end
157
167
 
158
168
  # @see the `==` method
@@ -164,7 +174,7 @@ module Freeclimb
164
174
  # Calculates hash code according to all attributes.
165
175
  # @return [Integer] Hash code
166
176
  def hash
167
- [action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts].hash
177
+ [action_url, digit_timeout_ms, finish_on_key, flush_buffer, initial_timeout_ms, max_digits, min_digits, prompts, privacy_mode].hash
168
178
  end
169
179
 
170
180
  # Builds the object from hash
@@ -51,8 +51,8 @@ module Freeclimb
51
51
  # Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance.
52
52
  attr_accessor :speech_incomplete_timeout_ms
53
53
 
54
- # Parameter enforcePCI will not log the `text` as required by PCI compliance.
55
- attr_accessor :enforce_pci
54
+ # Parameter privacyMode will not log the `text` as required by PCI compliance.
55
+ attr_accessor :privacy_mode
56
56
 
57
57
  # Attribute mapping from ruby-style variable name to JSON key.
58
58
  def self.attribute_map
@@ -69,7 +69,7 @@ module Freeclimb
69
69
  :'sensitivity_level' => :'sensitivityLevel',
70
70
  :'speech_complete_timeout_ms' => :'speechCompleteTimeoutMs',
71
71
  :'speech_incomplete_timeout_ms' => :'speechIncompleteTimeoutMs',
72
- :'enforce_pci' => :'enforcePCI'
72
+ :'privacy_mode' => :'privacyMode'
73
73
  }
74
74
  end
75
75
 
@@ -88,7 +88,7 @@ module Freeclimb
88
88
  :'sensitivity_level' => :'Float',
89
89
  :'speech_complete_timeout_ms' => :'Integer',
90
90
  :'speech_incomplete_timeout_ms' => :'Integer',
91
- :'enforce_pci' => :'Boolean'
91
+ :'privacy_mode' => :'Boolean'
92
92
  }
93
93
  end
94
94
 
@@ -174,8 +174,8 @@ module Freeclimb
174
174
  self.speech_incomplete_timeout_ms = attributes[:'speech_incomplete_timeout_ms']
175
175
  end
176
176
 
177
- if attributes.key?(:'enforce_pci')
178
- self.enforce_pci = attributes[:'enforce_pci']
177
+ if attributes.key?(:'privacy_mode')
178
+ self.privacy_mode = attributes[:'privacy_mode']
179
179
  end
180
180
  end
181
181
 
@@ -219,7 +219,7 @@ module Freeclimb
219
219
  sensitivity_level == o.sensitivity_level &&
220
220
  speech_complete_timeout_ms == o.speech_complete_timeout_ms &&
221
221
  speech_incomplete_timeout_ms == o.speech_incomplete_timeout_ms &&
222
- enforce_pci == o.enforce_pci && super(o)
222
+ privacy_mode == o.privacy_mode && super(o)
223
223
  end
224
224
 
225
225
  # @see the `==` method
@@ -231,7 +231,7 @@ module Freeclimb
231
231
  # Calculates hash code according to all attributes.
232
232
  # @return [Integer] Hash code
233
233
  def hash
234
- [action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, enforce_pci].hash
234
+ [action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, privacy_mode].hash
235
235
  end
236
236
 
237
237
  # Builds the object from hash
@@ -50,8 +50,8 @@ module Freeclimb
50
50
  # Parameter `speechIncompleteTimeoutMs` specifies the length of silence following user speech after which a recognizer finalizes a result. This timeout applies when the speech prior to the silence is an incomplete match of all active grammars. Timeout `speechIncompleteTimeoutMs` is usually longer than `speechCompleteTimeoutMs` to allow users to pause mid-utterance.
51
51
  attr_accessor :speech_incomplete_timeout_ms
52
52
 
53
- # Parameter enforcePCI will not log the `text` as required by PCI compliance.
54
- attr_accessor :enforce_pci
53
+ # Parameter privacyMode will not log the `text` as required by PCI compliance.
54
+ attr_accessor :privacy_mode
55
55
 
56
56
  # Attribute mapping from ruby-style variable name to JSON key.
57
57
  def self.attribute_map
@@ -68,7 +68,7 @@ module Freeclimb
68
68
  :'sensitivity_level' => :'sensitivityLevel',
69
69
  :'speech_complete_timeout_ms' => :'speechCompleteTimeoutMs',
70
70
  :'speech_incomplete_timeout_ms' => :'speechIncompleteTimeoutMs',
71
- :'enforce_pci' => :'enforcePCI'
71
+ :'privacy_mode' => :'privacyMode'
72
72
  }
73
73
  end
74
74
 
@@ -87,7 +87,7 @@ module Freeclimb
87
87
  :'sensitivity_level' => :'Float',
88
88
  :'speech_complete_timeout_ms' => :'Integer',
89
89
  :'speech_incomplete_timeout_ms' => :'Integer',
90
- :'enforce_pci' => :'Boolean'
90
+ :'privacy_mode' => :'Boolean'
91
91
  }
92
92
  end
93
93
 
@@ -162,8 +162,8 @@ module Freeclimb
162
162
  self.speech_incomplete_timeout_ms = attributes[:'speech_incomplete_timeout_ms']
163
163
  end
164
164
 
165
- if attributes.key?(:'enforce_pci')
166
- self.enforce_pci = attributes[:'enforce_pci']
165
+ if attributes.key?(:'privacy_mode')
166
+ self.privacy_mode = attributes[:'privacy_mode']
167
167
  end
168
168
  end
169
169
 
@@ -207,7 +207,7 @@ module Freeclimb
207
207
  sensitivity_level == o.sensitivity_level &&
208
208
  speech_complete_timeout_ms == o.speech_complete_timeout_ms &&
209
209
  speech_incomplete_timeout_ms == o.speech_incomplete_timeout_ms &&
210
- enforce_pci == o.enforce_pci
210
+ privacy_mode == o.privacy_mode
211
211
  end
212
212
 
213
213
  # @see the `==` method
@@ -219,7 +219,7 @@ module Freeclimb
219
219
  # Calculates hash code according to all attributes.
220
220
  # @return [Integer] Hash code
221
221
  def hash
222
- [action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, enforce_pci].hash
222
+ [action_url, grammar_type, grammar_file, grammar_rule, play_beep, prompts, no_input_timeout_ms, recognition_timeout_ms, confidence_threshold, sensitivity_level, speech_complete_timeout_ms, speech_incomplete_timeout_ms, privacy_mode].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -0,0 +1,220 @@
1
+ =begin
2
+ #FreeClimb API
3
+
4
+ #FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module Freeclimb
16
+ # The `Hangup` command terminates a Call. If `Hangup` is used as the first action in a PerCL response, it does not prevent FreeClimb from answering the Call and billing your account. See the `Reject` command to hang up at no charge.
17
+ class Hangup < PerclCommand
18
+ # The user defined reason for the hangup. In general, applications should use a set of enumerated values that are predefined to cover all exit points of the Call flows for the given application.
19
+ attr_accessor :reason
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'reason' => :'reason'
25
+ }
26
+ end
27
+
28
+ # Attribute type mapping.
29
+ def self.openapi_types
30
+ {
31
+ :'reason' => :'String'
32
+ }
33
+ end
34
+
35
+ # List of attributes with nullable: true
36
+ def self.openapi_nullable
37
+ Set.new([
38
+ ])
39
+ end
40
+
41
+ # List of class defined in allOf (OpenAPI v3)
42
+ def self.openapi_all_of
43
+ [
44
+ :'HangupAllOf',
45
+ :'PerclCommand'
46
+ ]
47
+ end
48
+
49
+ # Initializes the object
50
+ # @param [Hash] attributes Model attributes in the form of hash
51
+ def initialize(attributes = {})
52
+ if (!attributes.is_a?(Hash))
53
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::Hangup` initialize method"
54
+ end
55
+
56
+ # check to see if the attribute exists and convert string to symbol for hash key
57
+ attributes = attributes.each_with_object({}) { |(k, v), h|
58
+ if (!self.class.attribute_map.key?(k.to_sym))
59
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::Hangup`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
60
+ end
61
+ h[k.to_sym] = v
62
+ }
63
+
64
+ # call parent's initialize
65
+ super(attributes)
66
+
67
+ if attributes.key?(:'reason')
68
+ self.reason = attributes[:'reason']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = super
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ true && super
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ reason == o.reason && super(o)
91
+ end
92
+
93
+ # @see the `==` method
94
+ # @param [Object] Object to be compared
95
+ def eql?(o)
96
+ self == o
97
+ end
98
+
99
+ # Calculates hash code according to all attributes.
100
+ # @return [Integer] Hash code
101
+ def hash
102
+ [reason].hash
103
+ end
104
+
105
+ # Builds the object from hash
106
+ # @param [Hash] attributes Model attributes in the form of hash
107
+ # @return [Object] Returns the model itself
108
+ def self.build_from_hash(attributes)
109
+ new.build_from_hash(attributes)
110
+ end
111
+
112
+ # Builds the object from hash
113
+ # @param [Hash] attributes Model attributes in the form of hash
114
+ # @return [Object] Returns the model itself
115
+ def build_from_hash(attributes)
116
+ return nil unless attributes.is_a?(Hash)
117
+ super(attributes)
118
+ self.class.openapi_types.each_pair do |key, type|
119
+ if type =~ /\AArray<(.*)>/i
120
+ # check to ensure the input is an array given that the attribute
121
+ # is documented as an array but the input is not
122
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
123
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
124
+ end
125
+ elsif !attributes[self.class.attribute_map[key]].nil?
126
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
127
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
128
+ end
129
+
130
+ self
131
+ end
132
+
133
+ # Deserializes the data based on type
134
+ # @param string type Data type
135
+ # @param string value Value to be deserialized
136
+ # @return [Object] Deserialized data
137
+ def _deserialize(type, value)
138
+ case type.to_sym
139
+ when :DateTime
140
+ DateTime.parse(value)
141
+ when :Date
142
+ Date.parse(value)
143
+ when :String
144
+ value.to_s
145
+ when :Integer
146
+ value.to_i
147
+ when :Float
148
+ value.to_f
149
+ when :Boolean
150
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
151
+ true
152
+ else
153
+ false
154
+ end
155
+ when :Object
156
+ # generic object (usually a Hash), return directly
157
+ value
158
+ when /\AArray<(?<inner_type>.+)>\z/
159
+ inner_type = Regexp.last_match[:inner_type]
160
+ value.map { |v| _deserialize(inner_type, v) }
161
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
162
+ k_type = Regexp.last_match[:k_type]
163
+ v_type = Regexp.last_match[:v_type]
164
+ {}.tap do |hash|
165
+ value.each do |k, v|
166
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
167
+ end
168
+ end
169
+ else # model
170
+ Freeclimb.const_get(type).build_from_hash(value)
171
+ end
172
+ end
173
+
174
+ # Returns the string representation of the object
175
+ # @return [String] String presentation of the object
176
+ def to_s
177
+ to_hash.to_s
178
+ end
179
+
180
+ # to_body is an alias to to_hash (backward compatibility)
181
+ # @return [Hash] Returns the object in the form of hash
182
+ def to_body
183
+ to_hash
184
+ end
185
+
186
+ # Returns the object in the form of hash
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_hash
189
+ hash = super
190
+ self.class.attribute_map.each_pair do |attr, param|
191
+ value = self.send(attr)
192
+ if value.nil?
193
+ is_nullable = self.class.openapi_nullable.include?(attr)
194
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
195
+ end
196
+
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
+ end
220
+ end