You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Lists BindingInstance records from the API as a list.
38
38
# Unlike stream(), this operation is eager and will load `limit` records into
39
39
# memory before returning.
40
-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
40
+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
41
41
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
42
42
# @param [Integer] limit Upper limit for the number of records to return. stream()
43
43
# guarantees to never return more than limit. Default is no limit
# Streams Instance records from the API as an Enumerable.
60
60
# This operation lazily loads records as efficiently as possible until the limit
61
61
# is reached.
62
-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
62
+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
63
63
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
64
64
# @param [Integer] limit Upper limit for the number of records to return. stream()
65
65
# guarantees to never return more than limit. Default is no limit
@@ -96,7 +96,7 @@ def each
96
96
##
97
97
# Retrieve a single page of BindingInstance records from the API.
98
98
# Request is executed immediately.
99
-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
99
+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
100
100
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
101
101
# @param [String] page_token PageToken provided by the API
102
102
# @param [Integer] page_number Page Number, this value is simply for client state
# @return [Hash] An object that contains caller name information based on [CNAM](https://support.twilio.com/hc/en-us/articles/360051670533-Getting-Started-with-CNAM-Caller-ID).
256
+
# @return [CallerName]
257
257
defcaller_name
258
258
@properties['caller_name']
259
259
end
260
260
261
261
##
262
-
# @return [Hash] An object that contains information on the last date the subscriber identity module (SIM) was changed for a mobile phone number.
262
+
# @return [SimSwap]
263
263
defsim_swap
264
264
@properties['sim_swap']
265
265
end
266
266
267
267
##
268
-
# @return [Hash] An object that contains information on the unconditional call forwarding status of mobile phone number.
268
+
# @return [CallForwarding]
269
269
defcall_forwarding
270
270
@properties['call_forwarding']
271
271
end
272
272
273
273
##
274
-
# @return [Hash] An object that contains line status information for a mobile phone number.
275
-
defline_status
276
-
@properties['line_status']
274
+
# @return [LineTypeIntelligence]
275
+
defline_type_intelligence
276
+
@properties['line_type_intelligence']
277
277
end
278
278
279
279
##
280
-
# @return [Hash] An object that contains line type information including the carrier name, mobile country code, and mobile network code.
281
-
defline_type_intelligence
282
-
@properties['line_type_intelligence']
280
+
# @return [LineStatus]
281
+
defline_status
282
+
@properties['line_status']
283
283
end
284
284
285
285
##
286
-
# @return [Hash] An object that contains identity match information. The result of comparing user-provided information including name, address, date of birth, national ID, against authoritative phone-based data sources
286
+
# @return [IdentityMatch]
287
287
defidentity_match
288
288
@properties['identity_match']
289
289
end
290
290
291
291
##
292
-
# @return [Hash] An object that contains reassigned number information. Reassigned Numbers will return a phone number's reassignment status given a phone number and date
292
+
# @return [ReassignedNumber]
293
293
defreassigned_number
294
294
@properties['reassigned_number']
295
295
end
296
296
297
297
##
298
-
# @return [Hash] An object that contains information on if a phone number has been currently or previously blocked by Verify Fraud Guard for receiving malicious SMS pumping traffic as well as other signals associated with risky carriers and low conversion rates.
0 commit comments