bandwidth-sdk 15.0.0 → 15.1.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.
@@ -0,0 +1,28 @@
1
+ # Bandwidth::BlockedWebhook
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **account_id** | **String** | User's account ID. | [optional] |
8
+ | **phone_number** | **String** | Toll-free telephone number in E.164 format. | [optional] |
9
+ | **status** | [**TfvCallbackStatusEnum**](TfvCallbackStatusEnum.md) | | [optional] |
10
+ | **internal_ticket_number** | **String** | Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. | [optional] |
11
+ | **blocked** | **Boolean** | Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) | [optional] |
12
+ | **blocked_reason** | **String** | The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'bandwidth-sdk'
18
+
19
+ instance = Bandwidth::BlockedWebhook.new(
20
+ account_id: 1234567,
21
+ phone_number: +18005555555,
22
+ status: null,
23
+ internal_ticket_number: acde070d-8c4c-4f0d-9d8a-162843c10333,
24
+ blocked: true,
25
+ blocked_reason: Toll-free number was used to send spam messages
26
+ )
27
+ ```
28
+
@@ -16,7 +16,7 @@ require 'bandwidth-sdk'
16
16
  instance = Bandwidth::RbmActionBase.new(
17
17
  type: null,
18
18
  text: Hello world,
19
- post_back_data: [B@204c5ddf
19
+ post_back_data: [B@6b103db7
20
20
  )
21
21
  ```
22
22
 
@@ -32,9 +32,9 @@ instance = Bandwidth::TfvSubmissionInfo.new(
32
32
  opt_in_workflow: null,
33
33
  additional_information: Any additional information,
34
34
  isv_reseller: Test ISV,
35
- privacy_policy_url: http://your-company.com/privacyPolicyUrl.pdf,
36
- terms_and_conditions_url: http://your-company.com/termsAndConditionsUrl.pdf,
37
- business_dba: SecondCompany Name
35
+ privacy_policy_url: http://your-company.com/privacyPolicy,
36
+ terms_and_conditions_url: http://your-company.com/termsAndConditions,
37
+ business_dba: Another Company Name Inc.
38
38
  )
39
39
  ```
40
40
 
@@ -34,9 +34,9 @@ instance = Bandwidth::VerificationRequest.new(
34
34
  opt_in_workflow: null,
35
35
  additional_information: Any additional information,
36
36
  isv_reseller: Test ISV,
37
- privacy_policy_url: http://your-company.com/privacyPolicyUrl.pdf,
38
- terms_and_conditions_url: http://your-company.com/termsAndConditionsUrl.pdf,
39
- business_dba: SecondCompany Name
37
+ privacy_policy_url: http://your-company.com/privacyPolicy,
38
+ terms_and_conditions_url: http://your-company.com/termsAndConditions,
39
+ business_dba: Another Company Name Inc.
40
40
  )
41
41
  ```
42
42
 
@@ -32,9 +32,9 @@ instance = Bandwidth::VerificationUpdateRequest.new(
32
32
  opt_in_workflow: null,
33
33
  additional_information: Any additional information,
34
34
  isv_reseller: Test ISV,
35
- privacy_policy_url: http://your-company.com/privacyPolicyUrl.pdf,
36
- terms_and_conditions_url: http://your-company.com/termsAndConditionsUrl.pdf,
37
- business_dba: SecondCompany Name
35
+ privacy_policy_url: http://your-company.com/privacyPolicy,
36
+ terms_and_conditions_url: http://your-company.com/termsAndConditions,
37
+ business_dba: Another Company Name Inc.
38
38
  )
39
39
  ```
40
40
 
@@ -0,0 +1,323 @@
1
+ =begin
2
+ #Bandwidth
3
+
4
+ #Bandwidth's Communication APIs
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: letstalk@bandwidth.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.8.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Bandwidth
17
+ class BlockedWebhook
18
+ # User's account ID.
19
+ attr_accessor :account_id
20
+
21
+ # Toll-free telephone number in E.164 format.
22
+ attr_accessor :phone_number
23
+
24
+ attr_accessor :status
25
+
26
+ # Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number.
27
+ attr_accessor :internal_ticket_number
28
+
29
+ # Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
30
+ attr_accessor :blocked
31
+
32
+ # The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025)
33
+ attr_accessor :blocked_reason
34
+
35
+ class EnumAttributeValidator
36
+ attr_reader :datatype
37
+ attr_reader :allowable_values
38
+
39
+ def initialize(datatype, allowable_values)
40
+ @allowable_values = allowable_values.map do |value|
41
+ case datatype.to_s
42
+ when /Integer/i
43
+ value.to_i
44
+ when /Float/i
45
+ value.to_f
46
+ else
47
+ value
48
+ end
49
+ end
50
+ end
51
+
52
+ def valid?(value)
53
+ !value || allowable_values.include?(value)
54
+ end
55
+ end
56
+
57
+ # Attribute mapping from ruby-style variable name to JSON key.
58
+ def self.attribute_map
59
+ {
60
+ :'account_id' => :'accountId',
61
+ :'phone_number' => :'phoneNumber',
62
+ :'status' => :'status',
63
+ :'internal_ticket_number' => :'internalTicketNumber',
64
+ :'blocked' => :'blocked',
65
+ :'blocked_reason' => :'blockedReason'
66
+ }
67
+ end
68
+
69
+ # Returns all the JSON keys this model knows about
70
+ def self.acceptable_attributes
71
+ attribute_map.values
72
+ end
73
+
74
+ # Attribute type mapping.
75
+ def self.openapi_types
76
+ {
77
+ :'account_id' => :'String',
78
+ :'phone_number' => :'String',
79
+ :'status' => :'TfvCallbackStatusEnum',
80
+ :'internal_ticket_number' => :'String',
81
+ :'blocked' => :'Boolean',
82
+ :'blocked_reason' => :'String'
83
+ }
84
+ end
85
+
86
+ # List of attributes with nullable: true
87
+ def self.openapi_nullable
88
+ Set.new([
89
+ ])
90
+ end
91
+
92
+ # Initializes the object
93
+ # @param [Hash] attributes Model attributes in the form of hash
94
+ def initialize(attributes = {})
95
+ if (!attributes.is_a?(Hash))
96
+ fail ArgumentError, 'The input argument (attributes) must be a hash in `Bandwidth::BlockedWebhook` initialize method'
97
+ end
98
+
99
+ # check to see if the attribute exists and convert string to symbol for hash key
100
+ attributes = attributes.each_with_object({}) { |(k, v), h|
101
+ if (!self.class.attribute_map.key?(k.to_sym))
102
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Bandwidth::BlockedWebhook`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
103
+ end
104
+ h[k.to_sym] = v
105
+ }
106
+
107
+ if attributes.key?(:'account_id')
108
+ self.account_id = attributes[:'account_id']
109
+ end
110
+
111
+ if attributes.key?(:'phone_number')
112
+ self.phone_number = attributes[:'phone_number']
113
+ end
114
+
115
+ if attributes.key?(:'status')
116
+ self.status = attributes[:'status']
117
+ end
118
+
119
+ if attributes.key?(:'internal_ticket_number')
120
+ self.internal_ticket_number = attributes[:'internal_ticket_number']
121
+ end
122
+
123
+ if attributes.key?(:'blocked')
124
+ self.blocked = attributes[:'blocked']
125
+ end
126
+
127
+ if attributes.key?(:'blocked_reason')
128
+ self.blocked_reason = attributes[:'blocked_reason']
129
+ end
130
+ end
131
+
132
+ # Show invalid properties with the reasons. Usually used together with valid?
133
+ # @return Array for valid properties with the reasons
134
+ def list_invalid_properties
135
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
136
+ invalid_properties = Array.new
137
+ if !@phone_number.nil? && @phone_number.to_s.length > 12
138
+ invalid_properties.push('invalid value for "phone_number", the character length must be smaller than or equal to 12.')
139
+ end
140
+
141
+ if !@phone_number.nil? && @phone_number.to_s.length < 12
142
+ invalid_properties.push('invalid value for "phone_number", the character length must be great than or equal to 12.')
143
+ end
144
+
145
+ pattern = Regexp.new(/^\+1(800|833|844|855|866|877|888)[2-9]\d{6}$/)
146
+ if !@phone_number.nil? && @phone_number !~ pattern
147
+ invalid_properties.push("invalid value for \"phone_number\", must conform to the pattern #{pattern}.")
148
+ end
149
+
150
+ invalid_properties
151
+ end
152
+
153
+ # Check to see if the all the properties in the model are valid
154
+ # @return true if the model is valid
155
+ def valid?
156
+ warn '[DEPRECATED] the `valid?` method is obsolete'
157
+ return false if !@phone_number.nil? && @phone_number.to_s.length > 12
158
+ return false if !@phone_number.nil? && @phone_number.to_s.length < 12
159
+ return false if !@phone_number.nil? && @phone_number !~ Regexp.new(/^\+1(800|833|844|855|866|877|888)[2-9]\d{6}$/)
160
+ true
161
+ end
162
+
163
+ # Custom attribute writer method with validation
164
+ # @param [Object] phone_number Value to be assigned
165
+ def phone_number=(phone_number)
166
+ if phone_number.nil?
167
+ fail ArgumentError, 'phone_number cannot be nil'
168
+ end
169
+
170
+ if phone_number.to_s.length > 12
171
+ fail ArgumentError, 'invalid value for "phone_number", the character length must be smaller than or equal to 12.'
172
+ end
173
+
174
+ if phone_number.to_s.length < 12
175
+ fail ArgumentError, 'invalid value for "phone_number", the character length must be great than or equal to 12.'
176
+ end
177
+
178
+ pattern = Regexp.new(/^\+1(800|833|844|855|866|877|888)[2-9]\d{6}$/)
179
+ if phone_number !~ pattern
180
+ fail ArgumentError, "invalid value for \"phone_number\", must conform to the pattern #{pattern}."
181
+ end
182
+
183
+ @phone_number = phone_number
184
+ end
185
+
186
+ # Checks equality by comparing each attribute.
187
+ # @param [Object] Object to be compared
188
+ def ==(o)
189
+ return true if self.equal?(o)
190
+ self.class == o.class &&
191
+ account_id == o.account_id &&
192
+ phone_number == o.phone_number &&
193
+ status == o.status &&
194
+ internal_ticket_number == o.internal_ticket_number &&
195
+ blocked == o.blocked &&
196
+ blocked_reason == o.blocked_reason
197
+ end
198
+
199
+ # @see the `==` method
200
+ # @param [Object] Object to be compared
201
+ def eql?(o)
202
+ self == o
203
+ end
204
+
205
+ # Calculates hash code according to all attributes.
206
+ # @return [Integer] Hash code
207
+ def hash
208
+ [account_id, phone_number, status, internal_ticket_number, blocked, blocked_reason].hash
209
+ end
210
+
211
+ # Builds the object from hash
212
+ # @param [Hash] attributes Model attributes in the form of hash
213
+ # @return [Object] Returns the model itself
214
+ def self.build_from_hash(attributes)
215
+ return nil unless attributes.is_a?(Hash)
216
+ attributes = attributes.transform_keys(&:to_sym)
217
+ transformed_hash = {}
218
+ openapi_types.each_pair do |key, type|
219
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
220
+ transformed_hash["#{key}"] = nil
221
+ elsif type =~ /\AArray<(.*)>/i
222
+ # check to ensure the input is an array given that the attribute
223
+ # is documented as an array but the input is not
224
+ if attributes[attribute_map[key]].is_a?(Array)
225
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
226
+ end
227
+ elsif !attributes[attribute_map[key]].nil?
228
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
229
+ end
230
+ end
231
+ new(transformed_hash)
232
+ end
233
+
234
+ # Deserializes the data based on type
235
+ # @param string type Data type
236
+ # @param string value Value to be deserialized
237
+ # @return [Object] Deserialized data
238
+ def self._deserialize(type, value)
239
+ case type.to_sym
240
+ when :Time
241
+ Time.parse(value)
242
+ when :Date
243
+ Date.parse(value)
244
+ when :String
245
+ value.to_s
246
+ when :Integer
247
+ value.to_i
248
+ when :Float
249
+ value.to_f
250
+ when :Boolean
251
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
252
+ true
253
+ else
254
+ false
255
+ end
256
+ when :Object
257
+ # generic object (usually a Hash), return directly
258
+ value
259
+ when /\AArray<(?<inner_type>.+)>\z/
260
+ inner_type = Regexp.last_match[:inner_type]
261
+ value.map { |v| _deserialize(inner_type, v) }
262
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
263
+ k_type = Regexp.last_match[:k_type]
264
+ v_type = Regexp.last_match[:v_type]
265
+ {}.tap do |hash|
266
+ value.each do |k, v|
267
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
268
+ end
269
+ end
270
+ else # model
271
+ # models (e.g. Pet) or oneOf
272
+ klass = Bandwidth.const_get(type)
273
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
274
+ end
275
+ end
276
+
277
+ # Returns the string representation of the object
278
+ # @return [String] String presentation of the object
279
+ def to_s
280
+ to_hash.to_s
281
+ end
282
+
283
+ # to_body is an alias to to_hash (backward compatibility)
284
+ # @return [Hash] Returns the object in the form of hash
285
+ def to_body
286
+ to_hash
287
+ end
288
+
289
+ # Returns the object in the form of hash
290
+ # @return [Hash] Returns the object in the form of hash
291
+ def to_hash
292
+ hash = {}
293
+ self.class.attribute_map.each_pair do |attr, param|
294
+ value = self.send(attr)
295
+ if value.nil?
296
+ is_nullable = self.class.openapi_nullable.include?(attr)
297
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
298
+ end
299
+
300
+ hash[param] = _to_hash(value)
301
+ end
302
+ hash
303
+ end
304
+
305
+ # Outputs non-array value in the form of hash
306
+ # For object, use to_hash. Otherwise, just return the value
307
+ # @param [Object] value Any valid value
308
+ # @return [Hash] Returns the value in the form of hash
309
+ def _to_hash(value)
310
+ if value.is_a?(Array)
311
+ value.compact.map { |v| _to_hash(v) }
312
+ elsif value.is_a?(Hash)
313
+ {}.tap do |hash|
314
+ value.each { |k, v| hash[k] = _to_hash(v) }
315
+ end
316
+ elsif value.respond_to? :to_hash
317
+ value.to_hash
318
+ else
319
+ value
320
+ end
321
+ end
322
+ end
323
+ end
@@ -62,7 +62,7 @@ module Bandwidth
62
62
  :'isv_reseller' => :'isvReseller',
63
63
  :'privacy_policy_url' => :'privacyPolicyUrl',
64
64
  :'terms_and_conditions_url' => :'termsAndConditionsUrl',
65
- :'business_dba' => :'businessDBA'
65
+ :'business_dba' => :'businessDba'
66
66
  }
67
67
  end
68
68
 
@@ -65,7 +65,7 @@ module Bandwidth
65
65
  :'isv_reseller' => :'isvReseller',
66
66
  :'privacy_policy_url' => :'privacyPolicyUrl',
67
67
  :'terms_and_conditions_url' => :'termsAndConditionsUrl',
68
- :'business_dba' => :'businessDBA'
68
+ :'business_dba' => :'businessDba'
69
69
  }
70
70
  end
71
71
 
@@ -62,7 +62,7 @@ module Bandwidth
62
62
  :'isv_reseller' => :'isvReseller',
63
63
  :'privacy_policy_url' => :'privacyPolicyUrl',
64
64
  :'terms_and_conditions_url' => :'termsAndConditionsUrl',
65
- :'business_dba' => :'businessDBA'
65
+ :'business_dba' => :'businessDba'
66
66
  }
67
67
  end
68
68
 
@@ -11,5 +11,5 @@ Generator version: 7.8.0
11
11
  =end
12
12
 
13
13
  module Bandwidth
14
- VERSION = '15.0.0'
14
+ VERSION = '15.1.0'
15
15
  end
data/lib/bandwidth-sdk.rb CHANGED
@@ -21,6 +21,7 @@ require 'bandwidth-sdk/models/account_statistics'
21
21
  require 'bandwidth-sdk/models/additional_denial_reason'
22
22
  require 'bandwidth-sdk/models/address'
23
23
  require 'bandwidth-sdk/models/answer_callback'
24
+ require 'bandwidth-sdk/models/blocked_webhook'
24
25
  require 'bandwidth-sdk/models/bridge_complete_callback'
25
26
  require 'bandwidth-sdk/models/bridge_target_complete_callback'
26
27
  require 'bandwidth-sdk/models/call_direction_enum'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bandwidth-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.0
4
+ version: 15.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bandwidth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-13 00:00:00.000000000 Z
11
+ date: 2025-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -147,6 +147,7 @@ files:
147
147
  - docs/AdditionalDenialReason.md
148
148
  - docs/Address.md
149
149
  - docs/AnswerCallback.md
150
+ - docs/BlockedWebhook.md
150
151
  - docs/BridgeCompleteCallback.md
151
152
  - docs/BridgeTargetCompleteCallback.md
152
153
  - docs/CallDirectionEnum.md
@@ -319,6 +320,7 @@ files:
319
320
  - lib/bandwidth-sdk/models/additional_denial_reason.rb
320
321
  - lib/bandwidth-sdk/models/address.rb
321
322
  - lib/bandwidth-sdk/models/answer_callback.rb
323
+ - lib/bandwidth-sdk/models/blocked_webhook.rb
322
324
  - lib/bandwidth-sdk/models/bridge_complete_callback.rb
323
325
  - lib/bandwidth-sdk/models/bridge_target_complete_callback.rb
324
326
  - lib/bandwidth-sdk/models/bxml/bxml.rb
@@ -587,66 +589,66 @@ summary: Bandwidth Ruby SDK
587
589
  test_files:
588
590
  - spec/call_utils.rb
589
591
  - spec/fixtures/ruby_cat.jpeg
590
- - spec/smoke/recordings_api_spec.rb
591
- - spec/smoke/multi_channel_api_spec.rb
592
- - spec/smoke/phone_number_lookup_api_spec.rb
592
+ - spec/smoke/calls_api_spec.rb
593
+ - spec/smoke/toll_free_verification_api_spec.rb
593
594
  - spec/smoke/statistics_api_spec.rb
595
+ - spec/smoke/transcriptions_api_spec.rb
594
596
  - spec/smoke/conferences_api_spec.rb
597
+ - spec/smoke/phone_number_lookup_api_spec.rb
595
598
  - spec/smoke/mfa_api_spec.rb
596
- - spec/smoke/transcriptions_api_spec.rb
597
- - spec/smoke/media_api_spec.rb
598
- - spec/smoke/toll_free_verification_api_spec.rb
599
+ - spec/smoke/recordings_api_spec.rb
600
+ - spec/smoke/multi_channel_api_spec.rb
599
601
  - spec/smoke/messages_api_spec.rb
600
- - spec/smoke/calls_api_spec.rb
602
+ - spec/smoke/media_api_spec.rb
601
603
  - spec/spec_helper.rb
602
- - spec/unit/client/api_error_spec.rb
603
- - spec/unit/client/configuration_spec.rb
604
- - spec/unit/client/api_client_spec.rb
605
- - spec/unit/api/recordings_api_spec.rb
606
- - spec/unit/api/multi_channel_api_spec.rb
607
- - spec/unit/api/phone_number_lookup_api_spec.rb
604
+ - spec/unit/api/calls_api_spec.rb
605
+ - spec/unit/api/toll_free_verification_api_spec.rb
608
606
  - spec/unit/api/statistics_api_spec.rb
607
+ - spec/unit/api/transcriptions_api_spec.rb
609
608
  - spec/unit/api/conferences_api_spec.rb
609
+ - spec/unit/api/phone_number_lookup_api_spec.rb
610
610
  - spec/unit/api/mfa_api_spec.rb
611
- - spec/unit/api/transcriptions_api_spec.rb
612
- - spec/unit/api/media_api_spec.rb
613
- - spec/unit/api/toll_free_verification_api_spec.rb
611
+ - spec/unit/api/recordings_api_spec.rb
612
+ - spec/unit/api/multi_channel_api_spec.rb
614
613
  - spec/unit/api/messages_api_spec.rb
615
- - spec/unit/api/calls_api_spec.rb
616
- - spec/unit/models/call_state_enum_spec.rb
614
+ - spec/unit/api/media_api_spec.rb
615
+ - spec/unit/models/message_spec.rb
617
616
  - spec/unit/models/verify_code_request_spec.rb
618
617
  - spec/unit/models/deferred_result_spec.rb
619
- - spec/unit/models/message_spec.rb
620
618
  - spec/unit/models/call_state_spec.rb
621
- - spec/unit/models/bxml/bxml_spec.rb
622
- - spec/unit/models/bxml/nestable_verb_spec.rb
623
- - spec/unit/models/bxml/response_spec.rb
624
- - spec/unit/models/bxml/verb_spec.rb
619
+ - spec/unit/models/bxml/verbs/start_transcription_spec.rb
620
+ - spec/unit/models/bxml/verbs/redirect_spec.rb
625
621
  - spec/unit/models/bxml/verbs/start_recording_spec.rb
626
- - spec/unit/models/bxml/verbs/stop_gather_spec.rb
627
- - spec/unit/models/bxml/verbs/pause_spec.rb
628
- - spec/unit/models/bxml/verbs/stop_transcription_spec.rb
629
- - spec/unit/models/bxml/verbs/stop_recording_spec.rb
630
- - spec/unit/models/bxml/verbs/pause_recording_spec.rb
631
622
  - spec/unit/models/bxml/verbs/sip_uri_spec.rb
623
+ - spec/unit/models/bxml/verbs/ring_spec.rb
632
624
  - spec/unit/models/bxml/verbs/send_dtmf_spec.rb
633
- - spec/unit/models/bxml/verbs/redirect_spec.rb
625
+ - spec/unit/models/bxml/verbs/phone_number_spec.rb
634
626
  - spec/unit/models/bxml/verbs/speak_sentence_spec.rb
635
- - spec/unit/models/bxml/verbs/start_stream_spec.rb
627
+ - spec/unit/models/bxml/verbs/stop_stream_spec.rb
628
+ - spec/unit/models/bxml/verbs/resume_recording_spec.rb
636
629
  - spec/unit/models/bxml/verbs/conference_spec.rb
637
- - spec/unit/models/bxml/verbs/bridge_spec.rb
638
- - spec/unit/models/bxml/verbs/hangup_spec.rb
639
- - spec/unit/models/bxml/verbs/forward_spec.rb
630
+ - spec/unit/models/bxml/verbs/start_stream_spec.rb
640
631
  - spec/unit/models/bxml/verbs/record_spec.rb
641
- - spec/unit/models/bxml/verbs/custom_param_spec.rb
642
- - spec/unit/models/bxml/verbs/start_transcription_spec.rb
643
- - spec/unit/models/bxml/verbs/play_audio_spec.rb
644
- - spec/unit/models/bxml/verbs/resume_recording_spec.rb
645
- - spec/unit/models/bxml/verbs/ring_spec.rb
646
- - spec/unit/models/bxml/verbs/stop_stream_spec.rb
647
- - spec/unit/models/bxml/verbs/stream_param_spec.rb
648
- - spec/unit/models/bxml/verbs/tag_spec.rb
649
- - spec/unit/models/bxml/verbs/start_gather_spec.rb
650
- - spec/unit/models/bxml/verbs/phone_number_spec.rb
632
+ - spec/unit/models/bxml/verbs/stop_gather_spec.rb
633
+ - spec/unit/models/bxml/verbs/pause_recording_spec.rb
651
634
  - spec/unit/models/bxml/verbs/gather_spec.rb
635
+ - spec/unit/models/bxml/verbs/stop_recording_spec.rb
652
636
  - spec/unit/models/bxml/verbs/transfer_spec.rb
637
+ - spec/unit/models/bxml/verbs/pause_spec.rb
638
+ - spec/unit/models/bxml/verbs/forward_spec.rb
639
+ - spec/unit/models/bxml/verbs/hangup_spec.rb
640
+ - spec/unit/models/bxml/verbs/stop_transcription_spec.rb
641
+ - spec/unit/models/bxml/verbs/bridge_spec.rb
642
+ - spec/unit/models/bxml/verbs/play_audio_spec.rb
643
+ - spec/unit/models/bxml/verbs/start_gather_spec.rb
644
+ - spec/unit/models/bxml/verbs/custom_param_spec.rb
645
+ - spec/unit/models/bxml/verbs/tag_spec.rb
646
+ - spec/unit/models/bxml/verbs/stream_param_spec.rb
647
+ - spec/unit/models/bxml/bxml_spec.rb
648
+ - spec/unit/models/bxml/verb_spec.rb
649
+ - spec/unit/models/bxml/nestable_verb_spec.rb
650
+ - spec/unit/models/bxml/response_spec.rb
651
+ - spec/unit/models/call_state_enum_spec.rb
652
+ - spec/unit/client/configuration_spec.rb
653
+ - spec/unit/client/api_error_spec.rb
654
+ - spec/unit/client/api_client_spec.rb