twilio-ruby 5.42.0 → 5.43.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.
- checksums.yaml +4 -4
- data/CHANGES.md +27 -0
- data/README.md +18 -2
- data/lib/twilio-ruby.rb +1 -1
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +20 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call/event.rb +201 -0
- data/lib/twilio-ruby/rest/client.rb +29 -3
- data/lib/twilio-ruby/rest/events/v1/subscription.rb +12 -5
- data/lib/twilio-ruby/rest/insights/v1/room/participant.rb +1 -8
- data/lib/twilio-ruby/rest/serverless/v1/service.rb +5 -5
- data/lib/twilio-ruby/rest/serverless/v1/service/asset.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/asset/asset_version.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/function.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb +4 -4
- data/lib/twilio-ruby/rest/serverless/v1/service/function/function_version/function_version_content.rb +4 -4
- data/lib/twilio-ruby/rest/sync/v1/service/document.rb +15 -5
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +15 -5
- data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +28 -5
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +15 -5
- data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +28 -5
- data/lib/twilio-ruby/rest/sync/v1/service/sync_stream.rb +15 -5
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +12 -9
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +16 -16
- data/lib/twilio-ruby/rest/verify/v2/service.rb +3 -3
- data/lib/twilio-ruby/rest/verify/v2/service/entity.rb +3 -1
- data/lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb +5 -3
- data/lib/twilio-ruby/util/configuration.rb +5 -1
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/integration/api/v2010/account/call/event_spec.rb +102 -0
- data/spec/integration/api/v2010/account/call_spec.rb +20 -10
- data/spec/integration/events/v1/subscription_spec.rb +49 -0
- data/spec/integration/insights/v1/room/participant_spec.rb +0 -2
- data/spec/rest/client_spec.rb +24 -2
- data/twilio-ruby.gemspec +1 -0
- metadata +19 -2
@@ -211,7 +211,6 @@ module Twilio
|
|
211
211
|
'join_time' => Twilio.deserialize_iso8601_datetime(payload['join_time']),
|
212
212
|
'leave_time' => Twilio.deserialize_iso8601_datetime(payload['leave_time']),
|
213
213
|
'duration_sec' => payload['duration_sec'].to_i,
|
214
|
-
'call_sid' => payload['call_sid'],
|
215
214
|
'account_sid' => payload['account_sid'],
|
216
215
|
'room_sid' => payload['room_sid'],
|
217
216
|
'status' => payload['status'],
|
@@ -279,12 +278,6 @@ module Twilio
|
|
279
278
|
@properties['duration_sec']
|
280
279
|
end
|
281
280
|
|
282
|
-
##
|
283
|
-
# @return [String] The call_sid
|
284
|
-
def call_sid
|
285
|
-
@properties['call_sid']
|
286
|
-
end
|
287
|
-
|
288
281
|
##
|
289
282
|
# @return [String] The account_sid
|
290
283
|
def account_sid
|
@@ -310,7 +303,7 @@ module Twilio
|
|
310
303
|
end
|
311
304
|
|
312
305
|
##
|
313
|
-
# @return [
|
306
|
+
# @return [String] The end_reason
|
314
307
|
def end_reason
|
315
308
|
@properties['end_reason']
|
316
309
|
end
|
@@ -11,7 +11,7 @@ module Twilio
|
|
11
11
|
class Serverless < Domain
|
12
12
|
class V1 < Version
|
13
13
|
##
|
14
|
-
# PLEASE NOTE that this class contains
|
14
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
15
15
|
class ServiceList < ListResource
|
16
16
|
##
|
17
17
|
# Initialize the ServiceList
|
@@ -114,7 +114,7 @@ module Twilio
|
|
114
114
|
# @param [String] friendly_name A descriptive string that you create to describe
|
115
115
|
# the Service resource. It can be a maximum of 255 characters.
|
116
116
|
# @param [Boolean] include_credentials Whether to inject Account credentials into
|
117
|
-
# a function invocation context. The default value is `
|
117
|
+
# a function invocation context. The default value is `true`.
|
118
118
|
# @param [Boolean] ui_editable Whether the Service's properties and subresources
|
119
119
|
# can be edited via the UI. The default value is `false`.
|
120
120
|
# @return [ServiceInstance] Created ServiceInstance
|
@@ -139,7 +139,7 @@ module Twilio
|
|
139
139
|
end
|
140
140
|
|
141
141
|
##
|
142
|
-
# PLEASE NOTE that this class contains
|
142
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
143
143
|
class ServicePage < Page
|
144
144
|
##
|
145
145
|
# Initialize the ServicePage
|
@@ -170,7 +170,7 @@ module Twilio
|
|
170
170
|
end
|
171
171
|
|
172
172
|
##
|
173
|
-
# PLEASE NOTE that this class contains
|
173
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
174
174
|
class ServiceContext < InstanceContext
|
175
175
|
##
|
176
176
|
# Initialize the ServiceContext
|
@@ -316,7 +316,7 @@ module Twilio
|
|
316
316
|
end
|
317
317
|
|
318
318
|
##
|
319
|
-
# PLEASE NOTE that this class contains
|
319
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
320
320
|
class ServiceInstance < InstanceResource
|
321
321
|
##
|
322
322
|
# Initialize the ServiceInstance
|
@@ -12,7 +12,7 @@ module Twilio
|
|
12
12
|
class V1 < Version
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
##
|
15
|
-
# PLEASE NOTE that this class contains
|
15
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
16
16
|
class AssetList < ListResource
|
17
17
|
##
|
18
18
|
# Initialize the AssetList
|
@@ -129,7 +129,7 @@ module Twilio
|
|
129
129
|
end
|
130
130
|
|
131
131
|
##
|
132
|
-
# PLEASE NOTE that this class contains
|
132
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
133
133
|
class AssetPage < Page
|
134
134
|
##
|
135
135
|
# Initialize the AssetPage
|
@@ -160,7 +160,7 @@ module Twilio
|
|
160
160
|
end
|
161
161
|
|
162
162
|
##
|
163
|
-
# PLEASE NOTE that this class contains
|
163
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
164
164
|
class AssetContext < InstanceContext
|
165
165
|
##
|
166
166
|
# Initialize the AssetContext
|
@@ -247,7 +247,7 @@ module Twilio
|
|
247
247
|
end
|
248
248
|
|
249
249
|
##
|
250
|
-
# PLEASE NOTE that this class contains
|
250
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
251
251
|
class AssetInstance < InstanceResource
|
252
252
|
##
|
253
253
|
# Initialize the AssetInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class AssetContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class AssetVersionList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the AssetVersionList
|
@@ -119,7 +119,7 @@ module Twilio
|
|
119
119
|
end
|
120
120
|
|
121
121
|
##
|
122
|
-
# PLEASE NOTE that this class contains
|
122
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
123
123
|
class AssetVersionPage < Page
|
124
124
|
##
|
125
125
|
# Initialize the AssetVersionPage
|
@@ -155,7 +155,7 @@ module Twilio
|
|
155
155
|
end
|
156
156
|
|
157
157
|
##
|
158
|
-
# PLEASE NOTE that this class contains
|
158
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
159
159
|
class AssetVersionContext < InstanceContext
|
160
160
|
##
|
161
161
|
# Initialize the AssetVersionContext
|
@@ -205,7 +205,7 @@ module Twilio
|
|
205
205
|
end
|
206
206
|
|
207
207
|
##
|
208
|
-
# PLEASE NOTE that this class contains
|
208
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
209
209
|
class AssetVersionInstance < InstanceResource
|
210
210
|
##
|
211
211
|
# Initialize the AssetVersionInstance
|
@@ -12,7 +12,7 @@ module Twilio
|
|
12
12
|
class V1 < Version
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
##
|
15
|
-
# PLEASE NOTE that this class contains
|
15
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
16
16
|
class BuildList < ListResource
|
17
17
|
##
|
18
18
|
# Initialize the BuildList
|
@@ -138,7 +138,7 @@ module Twilio
|
|
138
138
|
end
|
139
139
|
|
140
140
|
##
|
141
|
-
# PLEASE NOTE that this class contains
|
141
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
142
142
|
class BuildPage < Page
|
143
143
|
##
|
144
144
|
# Initialize the BuildPage
|
@@ -169,7 +169,7 @@ module Twilio
|
|
169
169
|
end
|
170
170
|
|
171
171
|
##
|
172
|
-
# PLEASE NOTE that this class contains
|
172
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
173
173
|
class BuildContext < InstanceContext
|
174
174
|
##
|
175
175
|
# Initialize the BuildContext
|
@@ -229,7 +229,7 @@ module Twilio
|
|
229
229
|
end
|
230
230
|
|
231
231
|
##
|
232
|
-
# PLEASE NOTE that this class contains
|
232
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
233
233
|
class BuildInstance < InstanceResource
|
234
234
|
##
|
235
235
|
# Initialize the BuildInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class BuildContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class BuildStatusList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the BuildStatusList
|
@@ -38,7 +38,7 @@ module Twilio
|
|
38
38
|
end
|
39
39
|
|
40
40
|
##
|
41
|
-
# PLEASE NOTE that this class contains
|
41
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
42
42
|
class BuildStatusPage < Page
|
43
43
|
##
|
44
44
|
# Initialize the BuildStatusPage
|
@@ -74,7 +74,7 @@ module Twilio
|
|
74
74
|
end
|
75
75
|
|
76
76
|
##
|
77
|
-
# PLEASE NOTE that this class contains
|
77
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
78
78
|
class BuildStatusContext < InstanceContext
|
79
79
|
##
|
80
80
|
# Initialize the BuildStatusContext
|
@@ -121,7 +121,7 @@ module Twilio
|
|
121
121
|
end
|
122
122
|
|
123
123
|
##
|
124
|
-
# PLEASE NOTE that this class contains
|
124
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
125
125
|
class BuildStatusInstance < InstanceResource
|
126
126
|
##
|
127
127
|
# Initialize the BuildStatusInstance
|
@@ -12,7 +12,7 @@ module Twilio
|
|
12
12
|
class V1 < Version
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
##
|
15
|
-
# PLEASE NOTE that this class contains
|
15
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
16
16
|
class EnvironmentList < ListResource
|
17
17
|
##
|
18
18
|
# Initialize the EnvironmentList
|
@@ -132,7 +132,7 @@ module Twilio
|
|
132
132
|
end
|
133
133
|
|
134
134
|
##
|
135
|
-
# PLEASE NOTE that this class contains
|
135
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
136
136
|
class EnvironmentPage < Page
|
137
137
|
##
|
138
138
|
# Initialize the EnvironmentPage
|
@@ -163,7 +163,7 @@ module Twilio
|
|
163
163
|
end
|
164
164
|
|
165
165
|
##
|
166
|
-
# PLEASE NOTE that this class contains
|
166
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
167
167
|
class EnvironmentContext < InstanceContext
|
168
168
|
##
|
169
169
|
# Initialize the EnvironmentContext
|
@@ -288,7 +288,7 @@ module Twilio
|
|
288
288
|
end
|
289
289
|
|
290
290
|
##
|
291
|
-
# PLEASE NOTE that this class contains
|
291
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
292
292
|
class EnvironmentInstance < InstanceResource
|
293
293
|
##
|
294
294
|
# Initialize the EnvironmentInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class EnvironmentContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class DeploymentList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the DeploymentList
|
@@ -135,7 +135,7 @@ module Twilio
|
|
135
135
|
end
|
136
136
|
|
137
137
|
##
|
138
|
-
# PLEASE NOTE that this class contains
|
138
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
139
139
|
class DeploymentPage < Page
|
140
140
|
##
|
141
141
|
# Initialize the DeploymentPage
|
@@ -171,7 +171,7 @@ module Twilio
|
|
171
171
|
end
|
172
172
|
|
173
173
|
##
|
174
|
-
# PLEASE NOTE that this class contains
|
174
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
175
175
|
class DeploymentContext < InstanceContext
|
176
176
|
##
|
177
177
|
# Initialize the DeploymentContext
|
@@ -221,7 +221,7 @@ module Twilio
|
|
221
221
|
end
|
222
222
|
|
223
223
|
##
|
224
|
-
# PLEASE NOTE that this class contains
|
224
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
225
225
|
class DeploymentInstance < InstanceResource
|
226
226
|
##
|
227
227
|
# Initialize the DeploymentInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class EnvironmentContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class LogList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the LogList
|
@@ -151,7 +151,7 @@ module Twilio
|
|
151
151
|
end
|
152
152
|
|
153
153
|
##
|
154
|
-
# PLEASE NOTE that this class contains
|
154
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
155
155
|
class LogPage < Page
|
156
156
|
##
|
157
157
|
# Initialize the LogPage
|
@@ -187,7 +187,7 @@ module Twilio
|
|
187
187
|
end
|
188
188
|
|
189
189
|
##
|
190
|
-
# PLEASE NOTE that this class contains
|
190
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
191
191
|
class LogContext < InstanceContext
|
192
192
|
##
|
193
193
|
# Initialize the LogContext
|
@@ -237,7 +237,7 @@ module Twilio
|
|
237
237
|
end
|
238
238
|
|
239
239
|
##
|
240
|
-
# PLEASE NOTE that this class contains
|
240
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
241
241
|
class LogInstance < InstanceResource
|
242
242
|
##
|
243
243
|
# Initialize the LogInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class EnvironmentContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class VariableList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the VariableList
|
@@ -139,7 +139,7 @@ module Twilio
|
|
139
139
|
end
|
140
140
|
|
141
141
|
##
|
142
|
-
# PLEASE NOTE that this class contains
|
142
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
143
143
|
class VariablePage < Page
|
144
144
|
##
|
145
145
|
# Initialize the VariablePage
|
@@ -175,7 +175,7 @@ module Twilio
|
|
175
175
|
end
|
176
176
|
|
177
177
|
##
|
178
|
-
# PLEASE NOTE that this class contains
|
178
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
179
179
|
class VariableContext < InstanceContext
|
180
180
|
##
|
181
181
|
# Initialize the VariableContext
|
@@ -253,7 +253,7 @@ module Twilio
|
|
253
253
|
end
|
254
254
|
|
255
255
|
##
|
256
|
-
# PLEASE NOTE that this class contains
|
256
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
257
257
|
class VariableInstance < InstanceResource
|
258
258
|
##
|
259
259
|
# Initialize the VariableInstance
|
@@ -12,7 +12,7 @@ module Twilio
|
|
12
12
|
class V1 < Version
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
##
|
15
|
-
# PLEASE NOTE that this class contains
|
15
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
16
16
|
class FunctionList < ListResource
|
17
17
|
##
|
18
18
|
# Initialize the FunctionList
|
@@ -129,7 +129,7 @@ module Twilio
|
|
129
129
|
end
|
130
130
|
|
131
131
|
##
|
132
|
-
# PLEASE NOTE that this class contains
|
132
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
133
133
|
class FunctionPage < Page
|
134
134
|
##
|
135
135
|
# Initialize the FunctionPage
|
@@ -160,7 +160,7 @@ module Twilio
|
|
160
160
|
end
|
161
161
|
|
162
162
|
##
|
163
|
-
# PLEASE NOTE that this class contains
|
163
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
164
164
|
class FunctionContext < InstanceContext
|
165
165
|
##
|
166
166
|
# Initialize the FunctionContext
|
@@ -247,7 +247,7 @@ module Twilio
|
|
247
247
|
end
|
248
248
|
|
249
249
|
##
|
250
|
-
# PLEASE NOTE that this class contains
|
250
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
251
251
|
class FunctionInstance < InstanceResource
|
252
252
|
##
|
253
253
|
# Initialize the FunctionInstance
|
@@ -13,7 +13,7 @@ module Twilio
|
|
13
13
|
class ServiceContext < InstanceContext
|
14
14
|
class FunctionContext < InstanceContext
|
15
15
|
##
|
16
|
-
# PLEASE NOTE that this class contains
|
16
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
17
17
|
class FunctionVersionList < ListResource
|
18
18
|
##
|
19
19
|
# Initialize the FunctionVersionList
|
@@ -119,7 +119,7 @@ module Twilio
|
|
119
119
|
end
|
120
120
|
|
121
121
|
##
|
122
|
-
# PLEASE NOTE that this class contains
|
122
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
123
123
|
class FunctionVersionPage < Page
|
124
124
|
##
|
125
125
|
# Initialize the FunctionVersionPage
|
@@ -155,7 +155,7 @@ module Twilio
|
|
155
155
|
end
|
156
156
|
|
157
157
|
##
|
158
|
-
# PLEASE NOTE that this class contains
|
158
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
159
159
|
class FunctionVersionContext < InstanceContext
|
160
160
|
##
|
161
161
|
# Initialize the FunctionVersionContext
|
@@ -221,7 +221,7 @@ module Twilio
|
|
221
221
|
end
|
222
222
|
|
223
223
|
##
|
224
|
-
# PLEASE NOTE that this class contains
|
224
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
225
225
|
class FunctionVersionInstance < InstanceResource
|
226
226
|
##
|
227
227
|
# Initialize the FunctionVersionInstance
|
@@ -14,7 +14,7 @@ module Twilio
|
|
14
14
|
class FunctionContext < InstanceContext
|
15
15
|
class FunctionVersionContext < InstanceContext
|
16
16
|
##
|
17
|
-
# PLEASE NOTE that this class contains
|
17
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
18
18
|
class FunctionVersionContentList < ListResource
|
19
19
|
##
|
20
20
|
# Initialize the FunctionVersionContentList
|
@@ -41,7 +41,7 @@ module Twilio
|
|
41
41
|
end
|
42
42
|
|
43
43
|
##
|
44
|
-
# PLEASE NOTE that this class contains
|
44
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
45
45
|
class FunctionVersionContentPage < Page
|
46
46
|
##
|
47
47
|
# Initialize the FunctionVersionContentPage
|
@@ -78,7 +78,7 @@ module Twilio
|
|
78
78
|
end
|
79
79
|
|
80
80
|
##
|
81
|
-
# PLEASE NOTE that this class contains
|
81
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
82
82
|
class FunctionVersionContentContext < InstanceContext
|
83
83
|
##
|
84
84
|
# Initialize the FunctionVersionContentContext
|
@@ -128,7 +128,7 @@ module Twilio
|
|
128
128
|
end
|
129
129
|
|
130
130
|
##
|
131
|
-
# PLEASE NOTE that this class contains
|
131
|
+
# PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
|
132
132
|
class FunctionVersionContentInstance < InstanceResource
|
133
133
|
##
|
134
134
|
# Initialize the FunctionVersionContentInstance
|