freeclimb 2.0.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +95 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +11 -4
  5. data/docs/DefaultApi.md +16 -24
  6. data/docs/GetDigits.md +3 -1
  7. data/docs/GetDigitsAllOf.md +3 -1
  8. data/docs/GetSpeech.md +2 -2
  9. data/docs/GetSpeechAllOf.md +2 -2
  10. data/docs/Hangup.md +17 -0
  11. data/docs/HangupAllOf.md +17 -0
  12. data/docs/MakeCallRequest.md +3 -1
  13. data/docs/MessageResult.md +1 -1
  14. data/docs/MessageResultAllOf.md +1 -1
  15. data/docs/OutDial.md +3 -1
  16. data/docs/OutDialAllOf.md +3 -1
  17. data/docs/Play.md +3 -1
  18. data/docs/PlayAllOf.md +3 -1
  19. data/docs/RecordUtterance.md +3 -1
  20. data/docs/RecordUtteranceAllOf.md +3 -1
  21. data/docs/Redirect.md +1 -1
  22. data/docs/RedirectAllOf.md +1 -1
  23. data/docs/Reject.md +17 -0
  24. data/docs/RejectAllOf.md +17 -0
  25. data/docs/Say.md +2 -2
  26. data/docs/SayAllOf.md +2 -2
  27. data/docs/SendDigits.md +3 -1
  28. data/docs/SendDigitsAllOf.md +3 -1
  29. data/freeclimb-2.0.3.gem +0 -0
  30. data/freeclimb-2.1.0.gem +0 -0
  31. data/lib/freeclimb.rb +4 -0
  32. data/lib/freeclimb/api/default_api.rb +40 -24
  33. data/lib/freeclimb/api_client.rb +1 -1
  34. data/lib/freeclimb/models/get_digits.rb +14 -4
  35. data/lib/freeclimb/models/get_digits_all_of.rb +14 -4
  36. data/lib/freeclimb/models/get_speech.rb +8 -8
  37. data/lib/freeclimb/models/get_speech_all_of.rb +8 -8
  38. data/lib/freeclimb/models/hangup.rb +220 -0
  39. data/lib/freeclimb/models/hangup_all_of.rb +207 -0
  40. data/lib/freeclimb/models/make_call_request.rb +14 -4
  41. data/lib/freeclimb/models/message_result.rb +3 -3
  42. data/lib/freeclimb/models/message_result_all_of.rb +3 -3
  43. data/lib/freeclimb/models/out_dial.rb +14 -4
  44. data/lib/freeclimb/models/out_dial_all_of.rb +14 -4
  45. data/lib/freeclimb/models/play.rb +14 -4
  46. data/lib/freeclimb/models/play_all_of.rb +14 -4
  47. data/lib/freeclimb/models/record_utterance.rb +14 -4
  48. data/lib/freeclimb/models/record_utterance_all_of.rb +14 -4
  49. data/lib/freeclimb/models/redirect.rb +7 -2
  50. data/lib/freeclimb/models/redirect_all_of.rb +6 -1
  51. data/lib/freeclimb/models/reject.rb +220 -0
  52. data/lib/freeclimb/models/reject_all_of.rb +207 -0
  53. data/lib/freeclimb/models/say.rb +8 -8
  54. data/lib/freeclimb/models/say_all_of.rb +8 -8
  55. data/lib/freeclimb/models/send_digits.rb +14 -4
  56. data/lib/freeclimb/models/send_digits_all_of.rb +14 -4
  57. data/lib/freeclimb/version.rb +1 -1
  58. data/spec/api/default_api_spec.rb +7 -14
  59. data/spec/models/hangup_spec.rb +41 -0
  60. data/spec/models/reject_spec.rb +41 -0
  61. metadata +17 -2
@@ -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
@@ -0,0 +1,207 @@
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
+ class HangupAllOf
17
+ # 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.
18
+ attr_accessor :reason
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :'reason' => :'reason'
24
+ }
25
+ end
26
+
27
+ # Attribute type mapping.
28
+ def self.openapi_types
29
+ {
30
+ :'reason' => :'String'
31
+ }
32
+ end
33
+
34
+ # List of attributes with nullable: true
35
+ def self.openapi_nullable
36
+ Set.new([
37
+ ])
38
+ end
39
+
40
+ # Initializes the object
41
+ # @param [Hash] attributes Model attributes in the form of hash
42
+ def initialize(attributes = {})
43
+ if (!attributes.is_a?(Hash))
44
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::HangupAllOf` initialize method"
45
+ end
46
+
47
+ # check to see if the attribute exists and convert string to symbol for hash key
48
+ attributes = attributes.each_with_object({}) { |(k, v), h|
49
+ if (!self.class.attribute_map.key?(k.to_sym))
50
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::HangupAllOf`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
51
+ end
52
+ h[k.to_sym] = v
53
+ }
54
+
55
+ if attributes.key?(:'reason')
56
+ self.reason = attributes[:'reason']
57
+ end
58
+ end
59
+
60
+ # Show invalid properties with the reasons. Usually used together with valid?
61
+ # @return Array for valid properties with the reasons
62
+ def list_invalid_properties
63
+ invalid_properties = Array.new
64
+ invalid_properties
65
+ end
66
+
67
+ # Check to see if the all the properties in the model are valid
68
+ # @return true if the model is valid
69
+ def valid?
70
+ true
71
+ end
72
+
73
+ # Checks equality by comparing each attribute.
74
+ # @param [Object] Object to be compared
75
+ def ==(o)
76
+ return true if self.equal?(o)
77
+ self.class == o.class &&
78
+ reason == o.reason
79
+ end
80
+
81
+ # @see the `==` method
82
+ # @param [Object] Object to be compared
83
+ def eql?(o)
84
+ self == o
85
+ end
86
+
87
+ # Calculates hash code according to all attributes.
88
+ # @return [Integer] Hash code
89
+ def hash
90
+ [reason].hash
91
+ end
92
+
93
+ # Builds the object from hash
94
+ # @param [Hash] attributes Model attributes in the form of hash
95
+ # @return [Object] Returns the model itself
96
+ def self.build_from_hash(attributes)
97
+ new.build_from_hash(attributes)
98
+ end
99
+
100
+ # Builds the object from hash
101
+ # @param [Hash] attributes Model attributes in the form of hash
102
+ # @return [Object] Returns the model itself
103
+ def build_from_hash(attributes)
104
+ return nil unless attributes.is_a?(Hash)
105
+ self.class.openapi_types.each_pair do |key, type|
106
+ if type =~ /\AArray<(.*)>/i
107
+ # check to ensure the input is an array given that the attribute
108
+ # is documented as an array but the input is not
109
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
110
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
111
+ end
112
+ elsif !attributes[self.class.attribute_map[key]].nil?
113
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
114
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
115
+ end
116
+
117
+ self
118
+ end
119
+
120
+ # Deserializes the data based on type
121
+ # @param string type Data type
122
+ # @param string value Value to be deserialized
123
+ # @return [Object] Deserialized data
124
+ def _deserialize(type, value)
125
+ case type.to_sym
126
+ when :DateTime
127
+ DateTime.parse(value)
128
+ when :Date
129
+ Date.parse(value)
130
+ when :String
131
+ value.to_s
132
+ when :Integer
133
+ value.to_i
134
+ when :Float
135
+ value.to_f
136
+ when :Boolean
137
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
138
+ true
139
+ else
140
+ false
141
+ end
142
+ when :Object
143
+ # generic object (usually a Hash), return directly
144
+ value
145
+ when /\AArray<(?<inner_type>.+)>\z/
146
+ inner_type = Regexp.last_match[:inner_type]
147
+ value.map { |v| _deserialize(inner_type, v) }
148
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
149
+ k_type = Regexp.last_match[:k_type]
150
+ v_type = Regexp.last_match[:v_type]
151
+ {}.tap do |hash|
152
+ value.each do |k, v|
153
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
154
+ end
155
+ end
156
+ else # model
157
+ Freeclimb.const_get(type).build_from_hash(value)
158
+ end
159
+ end
160
+
161
+ # Returns the string representation of the object
162
+ # @return [String] String presentation of the object
163
+ def to_s
164
+ to_hash.to_s
165
+ end
166
+
167
+ # to_body is an alias to to_hash (backward compatibility)
168
+ # @return [Hash] Returns the object in the form of hash
169
+ def to_body
170
+ to_hash
171
+ end
172
+
173
+ # Returns the object in the form of hash
174
+ # @return [Hash] Returns the object in the form of hash
175
+ def to_hash
176
+ hash = {}
177
+ self.class.attribute_map.each_pair do |attr, param|
178
+ value = self.send(attr)
179
+ if value.nil?
180
+ is_nullable = self.class.openapi_nullable.include?(attr)
181
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
182
+ end
183
+
184
+ hash[param] = _to_hash(value)
185
+ end
186
+ hash
187
+ end
188
+
189
+ # Outputs non-array value in the form of hash
190
+ # For object, use to_hash. Otherwise, just return the value
191
+ # @param [Object] value Any valid value
192
+ # @return [Hash] Returns the value in the form of hash
193
+ def _to_hash(value)
194
+ if value.is_a?(Array)
195
+ value.compact.map { |v| _to_hash(v) }
196
+ elsif value.is_a?(Hash)
197
+ {}.tap do |hash|
198
+ value.each { |k, v| hash[k] = _to_hash(v) }
199
+ end
200
+ elsif value.respond_to? :to_hash
201
+ value.to_hash
202
+ else
203
+ value
204
+ end
205
+ end
206
+ end
207
+ end