freeclimb 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,222 @@
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
+ Contact: support@freeclimb.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Freeclimb
17
+ # The `Unpark` command resumes a parked call. Execution continues with the first command in the PerCL scripted returned by the actionUrl specified in the Park command as long as the call is still in progress. If the call is no longer in progress, any returned PerCL will not be executed. Unpark is a terminal command -- any commands following it in the same script are not executed.
18
+ class Unpark < PerclCommand
19
+ # Attribute mapping from ruby-style variable name to JSON key.
20
+ def self.attribute_map
21
+ {
22
+ }
23
+ end
24
+
25
+ # Returns all the JSON keys this model knows about, including the ones defined in its parent(s)
26
+ def self.acceptable_attributes
27
+ attribute_map.values.concat(superclass.acceptable_attributes)
28
+ end
29
+
30
+ # Attribute type mapping.
31
+ def self.openapi_types
32
+ {
33
+ }
34
+ end
35
+
36
+ # List of attributes with nullable: true
37
+ def self.openapi_nullable
38
+ Set.new([
39
+ ])
40
+ end
41
+
42
+ # List of class defined in allOf (OpenAPI v3)
43
+ def self.openapi_all_of
44
+ [
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::Unpark` 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::Unpark`. 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
+ self.command = "Unpark"
67
+ end
68
+
69
+ # Show invalid properties with the reasons. Usually used together with valid?
70
+ # @return Array for valid properties with the reasons
71
+ def list_invalid_properties
72
+ invalid_properties = super
73
+ invalid_properties
74
+ end
75
+
76
+ # Check to see if the all the properties in the model are valid
77
+ # @return true if the model is valid
78
+ def valid?
79
+ true && super
80
+ end
81
+
82
+ # Checks equality by comparing each attribute.
83
+ # @param [Object] Object to be compared
84
+ def ==(o)
85
+ return true if self.equal?(o)
86
+ self.class == o.class && super(o)
87
+ end
88
+
89
+ # @see the `==` method
90
+ # @param [Object] Object to be compared
91
+ def eql?(o)
92
+ self == o
93
+ end
94
+
95
+ # Calculates hash code according to all attributes.
96
+ # @return [Integer] Hash code
97
+ def hash
98
+ [].hash
99
+ end
100
+
101
+ # Builds the object from hash
102
+ # @param [Hash] attributes Model attributes in the form of hash
103
+ # @return [Object] Returns the model itself
104
+ def self.build_from_hash(attributes)
105
+ new.build_from_hash(attributes)
106
+ end
107
+
108
+ # Builds the object from hash
109
+ # @param [Hash] attributes Model attributes in the form of hash
110
+ # @return [Object] Returns the model itself
111
+ def build_from_hash(attributes)
112
+ return nil unless attributes.is_a?(Hash)
113
+ super(attributes)
114
+ self.class.openapi_types.each_pair do |key, type|
115
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
116
+ self.send("#{key}=", nil)
117
+ elsif type =~ /\AArray<(.*)>/i
118
+ # check to ensure the input is an array given that the attribute
119
+ # is documented as an array but the input is not
120
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
121
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
122
+ end
123
+ elsif !attributes[self.class.attribute_map[key]].nil?
124
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
125
+ end
126
+ end
127
+
128
+ self
129
+ end
130
+
131
+ # Deserializes the data based on type
132
+ # @param string type Data type
133
+ # @param string value Value to be deserialized
134
+ # @return [Object] Deserialized data
135
+ def _deserialize(type, value)
136
+ case type.to_sym
137
+ when :Time
138
+ Time.parse(value)
139
+ when :Date
140
+ Date.parse(value)
141
+ when :String
142
+ value.to_s
143
+ when :Integer
144
+ value.to_i
145
+ when :Float
146
+ value.to_f
147
+ when :Boolean
148
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
149
+ true
150
+ else
151
+ false
152
+ end
153
+ when :Object
154
+ # generic object (usually a Hash), return directly
155
+ value
156
+ when /\AArray<(?<inner_type>.+)>\z/
157
+ inner_type = Regexp.last_match[:inner_type]
158
+ value.map { |v| _deserialize(inner_type, v) }
159
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
160
+ k_type = Regexp.last_match[:k_type]
161
+ v_type = Regexp.last_match[:v_type]
162
+ {}.tap do |hash|
163
+ value.each do |k, v|
164
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
165
+ end
166
+ end
167
+ else # model
168
+ # models (e.g. Pet) or oneOf
169
+ klass = Freeclimb.const_get(type)
170
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.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
+
220
+ end
221
+
222
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module Freeclimb
14
- VERSION = '4.0.0'
14
+ VERSION = '4.0.1'
15
15
  end
data/lib/freeclimb.rb CHANGED
@@ -68,6 +68,7 @@ require 'freeclimb/models/messages_list_all_of'
68
68
  require 'freeclimb/models/mutable_resource_model'
69
69
  require 'freeclimb/models/out_dial_all_of'
70
70
  require 'freeclimb/models/pagination_model'
71
+ require 'freeclimb/models/park_all_of'
71
72
  require 'freeclimb/models/pause_all_of'
72
73
  require 'freeclimb/models/percl_command'
73
74
  require 'freeclimb/models/percl_script'
@@ -106,6 +107,7 @@ require 'freeclimb/models/get_digits'
106
107
  require 'freeclimb/models/get_speech'
107
108
  require 'freeclimb/models/hangup'
108
109
  require 'freeclimb/models/out_dial'
110
+ require 'freeclimb/models/park'
109
111
  require 'freeclimb/models/pause'
110
112
  require 'freeclimb/models/play'
111
113
  require 'freeclimb/models/play_early_media'
@@ -120,6 +122,7 @@ require 'freeclimb/models/set_talk'
120
122
  require 'freeclimb/models/sms'
121
123
  require 'freeclimb/models/start_record_call'
122
124
  require 'freeclimb/models/terminate_conference'
125
+ require 'freeclimb/models/unpark'
123
126
 
124
127
  # APIs
125
128
  require 'freeclimb/api/default_api'
@@ -12,7 +12,7 @@ OpenAPI Generator version: 5.4.0
12
12
 
13
13
  require 'spec_helper'
14
14
  require 'json'
15
- require 'rusty_camel'
15
+ require 'facets/string/snakecase'
16
16
 
17
17
  # Unit tests for Freeclimb::DefaultApi
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
@@ -17,7 +17,7 @@ describe Freeclimb::Configuration do
17
17
 
18
18
  before(:each) do
19
19
  # uncomment below to setup host and base_path
20
- require 'URI'
20
+ require 'uri'
21
21
  uri = URI.parse("https://www.freeclimb.com/apiserver")
22
22
  Freeclimb.configure do |c|
23
23
  c.host = uri.host
@@ -0,0 +1,46 @@
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
+ Contact: support@freeclimb.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Freeclimb::Park
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Freeclimb::Park do
21
+ let(:instance) { Freeclimb::Park.new }
22
+
23
+ describe 'test an instance of Park' do
24
+ it 'should create an instance of Park' do
25
+ expect(instance).to be_instance_of(Freeclimb::Park)
26
+ end
27
+ end
28
+ describe 'test attribute "wait_url"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "action_url"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "notification_url"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,28 @@
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
+ Contact: support@freeclimb.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Freeclimb::Unpark
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Freeclimb::Unpark do
21
+ let(:instance) { Freeclimb::Unpark.new }
22
+
23
+ describe 'test an instance of Unpark' do
24
+ it 'should create an instance of Unpark' do
25
+ expect(instance).to be_instance_of(Freeclimb::Unpark)
26
+ end
27
+ end
28
+ end
@@ -5,6 +5,6 @@ describe "quickstart" do
5
5
  say = Freeclimb::Say.new(text:'Hello, World!')
6
6
  script = Freeclimb::PerclScript.new(commands:[say])
7
7
  json = script.to_json()
8
- expect(json).to eq("[{\"Say\":{\"text\":\"Hello, World!\"}}]")
8
+ expect(json).to eq("[{\"Say\":{\"text\":\"Hello, World!\",\"loop\":1}}]")
9
9
  end
10
10
  end
data/spec/spec_helper.rb CHANGED
@@ -14,6 +14,7 @@ OpenAPI Generator version: 5.4.0
14
14
  require 'freeclimb'
15
15
  require 'webmock/rspec'
16
16
  require 'factory_bot'
17
+ require 'facets/string/camelcase'
17
18
 
18
19
  include WebMock::API
19
20
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: freeclimb
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-12 00:00:00.000000000 Z
11
+ date: 2022-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -129,6 +129,8 @@ files:
129
129
  - docs/OutDial.md
130
130
  - docs/OutDialAllOf.md
131
131
  - docs/PaginationModel.md
132
+ - docs/Park.md
133
+ - docs/ParkAllOf.md
132
134
  - docs/Pause.md
133
135
  - docs/PauseAllOf.md
134
136
  - docs/PerclCommand.md
@@ -170,6 +172,7 @@ files:
170
172
  - docs/StartRecordCall.md
171
173
  - docs/TerminateConference.md
172
174
  - docs/TerminateConferenceAllOf.md
175
+ - docs/Unpark.md
173
176
  - docs/UpdateCallRequest.md
174
177
  - docs/UpdateConferenceParticipantRequest.md
175
178
  - docs/UpdateConferenceRequest.md
@@ -238,6 +241,8 @@ files:
238
241
  - lib/freeclimb/models/out_dial.rb
239
242
  - lib/freeclimb/models/out_dial_all_of.rb
240
243
  - lib/freeclimb/models/pagination_model.rb
244
+ - lib/freeclimb/models/park.rb
245
+ - lib/freeclimb/models/park_all_of.rb
241
246
  - lib/freeclimb/models/pause.rb
242
247
  - lib/freeclimb/models/pause_all_of.rb
243
248
  - lib/freeclimb/models/percl_command.rb
@@ -279,6 +284,7 @@ files:
279
284
  - lib/freeclimb/models/start_record_call.rb
280
285
  - lib/freeclimb/models/terminate_conference.rb
281
286
  - lib/freeclimb/models/terminate_conference_all_of.rb
287
+ - lib/freeclimb/models/unpark.rb
282
288
  - lib/freeclimb/models/update_call_request.rb
283
289
  - lib/freeclimb/models/update_conference_participant_request.rb
284
290
  - lib/freeclimb/models/update_conference_request.rb
@@ -323,6 +329,7 @@ files:
323
329
  - spec/models/mutable_resource_model_spec.rb
324
330
  - spec/models/out_dial_spec.rb
325
331
  - spec/models/pagination_model_spec.rb
332
+ - spec/models/park_spec.rb
326
333
  - spec/models/pause_spec.rb
327
334
  - spec/models/percl_command_spec.rb
328
335
  - spec/models/percl_script_spec.rb
@@ -346,6 +353,7 @@ files:
346
353
  - spec/models/sms_spec.rb
347
354
  - spec/models/start_record_call_spec.rb
348
355
  - spec/models/terminate_conference_spec.rb
356
+ - spec/models/unpark_spec.rb
349
357
  - spec/models/update_call_request_spec.rb
350
358
  - spec/models/update_conference_participant_request_spec.rb
351
359
  - spec/models/update_conference_request_spec.rb
@@ -355,7 +363,7 @@ homepage: https://freeclimb.com
355
363
  licenses:
356
364
  - Unlicense
357
365
  metadata: {}
358
- post_install_message:
366
+ post_install_message:
359
367
  rdoc_options: []
360
368
  require_paths:
361
369
  - lib
@@ -370,8 +378,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
370
378
  - !ruby/object:Gem::Version
371
379
  version: '0'
372
380
  requirements: []
373
- rubygems_version: 3.3.7
374
- signing_key:
381
+ rubygems_version: 3.3.3
382
+ signing_key:
375
383
  specification_version: 4
376
384
  summary: FreeClimb API Ruby Gem
377
385
  test_files:
@@ -379,67 +387,69 @@ test_files:
379
387
  - spec/api_client_spec.rb
380
388
  - spec/configuration_spec.rb
381
389
  - spec/factories.rb
382
- - spec/models/play_spec.rb
383
- - spec/models/hangup_spec.rb
384
- - spec/models/set_listen_spec.rb
385
- - spec/models/recording_list_spec.rb
386
390
  - spec/models/pagination_model_spec.rb
387
- - spec/models/queue_list_spec.rb
388
- - spec/models/conference_result_spec.rb
389
- - spec/models/available_number_list_spec.rb
390
- - spec/models/dequeue_spec.rb
391
- - spec/models/get_speech_spec.rb
392
- - spec/models/queue_result_spec.rb
393
- - spec/models/queue_member_list_spec.rb
394
- - spec/models/filter_logs_request_spec.rb
395
- - spec/models/reject_spec.rb
396
- - spec/models/account_request_spec.rb
397
- - spec/models/incoming_number_request_spec.rb
398
- - spec/models/record_utterance_spec.rb
399
- - spec/models/update_conference_request_spec.rb
400
- - spec/models/say_spec.rb
401
- - spec/models/update_conference_participant_request_spec.rb
402
- - spec/models/account_result_spec.rb
403
- - spec/models/log_result_spec.rb
391
+ - spec/models/start_record_call_spec.rb
392
+ - spec/models/park_spec.rb
393
+ - spec/models/queue_member_spec.rb
394
+ - spec/models/buy_incoming_number_request_spec.rb
404
395
  - spec/models/add_to_conference_spec.rb
405
- - spec/models/send_digits_spec.rb
396
+ - spec/models/queue_member_list_spec.rb
406
397
  - spec/models/queue_request_spec.rb
407
- - spec/models/remove_from_conference_spec.rb
398
+ - spec/models/enqueue_spec.rb
408
399
  - spec/models/conference_list_spec.rb
409
- - spec/models/call_list_spec.rb
410
- - spec/models/start_record_call_spec.rb
400
+ - spec/models/update_conference_request_spec.rb
401
+ - spec/models/get_speech_spec.rb
402
+ - spec/models/call_result_spec.rb
403
+ - spec/models/incoming_number_request_spec.rb
404
+ - spec/models/conference_result_spec.rb
411
405
  - spec/models/message_request_spec.rb
412
- - spec/models/set_talk_spec.rb
413
- - spec/models/sms_spec.rb
414
- - spec/models/terminate_conference_spec.rb
415
- - spec/models/redirect_spec.rb
406
+ - spec/models/update_call_request_spec.rb
407
+ - spec/models/application_request_spec.rb
408
+ - spec/models/message_result_spec.rb
416
409
  - spec/models/incoming_number_list_spec.rb
410
+ - spec/models/application_list_spec.rb
417
411
  - spec/models/create_conference_spec.rb
418
- - spec/models/out_dial_spec.rb
419
- - spec/models/message_result_spec.rb
420
- - spec/models/play_early_media_spec.rb
412
+ - spec/models/create_conference_request_spec.rb
413
+ - spec/models/account_result_spec.rb
414
+ - spec/models/say_spec.rb
415
+ - spec/models/queue_list_spec.rb
416
+ - spec/models/available_number_spec.rb
417
+ - spec/models/available_number_list_spec.rb
418
+ - spec/models/conference_participant_result_spec.rb
419
+ - spec/models/account_request_spec.rb
421
420
  - spec/models/messages_list_spec.rb
422
- - spec/models/queue_member_spec.rb
423
- - spec/models/incoming_number_result_spec.rb
424
- - spec/models/application_request_spec.rb
425
- - spec/models/recording_result_spec.rb
426
- - spec/models/enqueue_spec.rb
421
+ - spec/models/recording_list_spec.rb
422
+ - spec/models/filter_logs_request_spec.rb
427
423
  - spec/models/log_list_spec.rb
428
- - spec/models/call_result_spec.rb
429
- - spec/models/available_number_spec.rb
430
- - spec/models/create_conference_request_spec.rb
431
- - spec/models/conference_participant_list_spec.rb
432
- - spec/models/buy_incoming_number_request_spec.rb
433
- - spec/models/update_call_request_spec.rb
424
+ - spec/models/send_digits_spec.rb
425
+ - spec/models/play_spec.rb
426
+ - spec/models/make_call_request_spec.rb
427
+ - spec/models/queue_result_spec.rb
428
+ - spec/models/reject_spec.rb
429
+ - spec/models/set_talk_spec.rb
430
+ - spec/models/hangup_spec.rb
434
431
  - spec/models/application_result_spec.rb
435
- - spec/models/conference_participant_result_spec.rb
436
- - spec/models/percl_script_spec.rb
432
+ - spec/models/sms_spec.rb
437
433
  - spec/models/percl_command_spec.rb
438
- - spec/models/get_digits_spec.rb
439
- - spec/models/mutable_resource_model_spec.rb
440
- - spec/models/application_list_spec.rb
434
+ - spec/models/redirect_spec.rb
441
435
  - spec/models/capabilities_spec.rb
436
+ - spec/models/update_conference_participant_request_spec.rb
437
+ - spec/models/conference_participant_list_spec.rb
438
+ - spec/models/out_dial_spec.rb
439
+ - spec/models/set_listen_spec.rb
440
+ - spec/models/record_utterance_spec.rb
442
441
  - spec/models/pause_spec.rb
443
- - spec/models/make_call_request_spec.rb
442
+ - spec/models/percl_script_spec.rb
443
+ - spec/models/call_list_spec.rb
444
+ - spec/models/incoming_number_result_spec.rb
445
+ - spec/models/get_digits_spec.rb
446
+ - spec/models/dequeue_spec.rb
447
+ - spec/models/recording_result_spec.rb
448
+ - spec/models/log_result_spec.rb
449
+ - spec/models/terminate_conference_spec.rb
450
+ - spec/models/play_early_media_spec.rb
451
+ - spec/models/remove_from_conference_spec.rb
452
+ - spec/models/mutable_resource_model_spec.rb
453
+ - spec/models/unpark_spec.rb
444
454
  - spec/quickstart_spec.rb
445
455
  - spec/spec_helper.rb