@@ -23,8 +23,8 @@ def __init__(self, version, service_sid, user_sid):
23
23
Initialize the UserBindingList
24
24
25
25
:param Version version: Version that contains the resource
26
- :param service_sid: The service_sid
27
- :param user_sid: The user_sid
26
+ :param service_sid: The unique id of the Service this binding belongs to.
27
+ :param user_sid: The unique id of the User for this binding.
28
28
29
29
:returns: twilio.rest.chat.v2.service.user.user_binding.UserBindingList
30
30
:rtype: twilio.rest.chat.v2.service.user.user_binding.UserBindingList
@@ -42,7 +42,7 @@ def stream(self, binding_type=values.unset, limit=None, page_size=None):
42
42
is reached.
43
43
The results are returned as a generator, so this operation is memory efficient.
44
44
45
- :param UserBindingInstance.BindingType binding_type: The binding_type
45
+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
46
46
:param int limit: Upper limit for the number of records to return. stream()
47
47
guarantees to never return more than limit. Default is no limit
48
48
:param int page_size: Number of records to fetch per request, when not set will use
@@ -65,7 +65,7 @@ def list(self, binding_type=values.unset, limit=None, page_size=None):
65
65
Unlike stream(), this operation is eager and will load `limit` records into
66
66
memory before returning.
67
67
68
- :param UserBindingInstance.BindingType binding_type: The binding_type
68
+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
69
69
:param int limit: Upper limit for the number of records to return. list() guarantees
70
70
never to return more than limit. Default is no limit
71
71
:param int page_size: Number of records to fetch per request, when not set will use
@@ -84,7 +84,7 @@ def page(self, binding_type=values.unset, page_token=values.unset,
84
84
Retrieve a single page of UserBindingInstance records from the API.
85
85
Request is executed immediately
86
86
87
- :param UserBindingInstance.BindingType binding_type: The binding_type
87
+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
88
88
:param str page_token: PageToken provided by the API
89
89
:param int page_number: Page Number, this value is simply for client state
90
90
:param int page_size: Number of records to return, defaults to 50
@@ -175,8 +175,8 @@ def __init__(self, version, response, solution):
175
175
176
176
:param Version version: Version that contains the resource
177
177
:param Response response: Response from the API
178
- :param service_sid: The service_sid
179
- :param user_sid: The user_sid
178
+ :param service_sid: The unique id of the Service this binding belongs to.
179
+ :param user_sid: The unique id of the User for this binding.
180
180
181
181
:returns: twilio.rest.chat.v2.service.user.user_binding.UserBindingPage
182
182
:rtype: twilio.rest.chat.v2.service.user.user_binding.UserBindingPage
@@ -338,95 +338,95 @@ def _proxy(self):
338
338
@property
339
339
def sid (self ):
340
340
"""
341
- :returns: The sid
341
+ :returns: A 34 character string that uniquely identifies this resource.
342
342
:rtype: unicode
343
343
"""
344
344
return self ._properties ['sid' ]
345
345
346
346
@property
347
347
def account_sid (self ):
348
348
"""
349
- :returns: The account_sid
349
+ :returns: The unique id of the Account responsible for this binding.
350
350
:rtype: unicode
351
351
"""
352
352
return self ._properties ['account_sid' ]
353
353
354
354
@property
355
355
def service_sid (self ):
356
356
"""
357
- :returns: The service_sid
357
+ :returns: The unique id of the Service this binding belongs to.
358
358
:rtype: unicode
359
359
"""
360
360
return self ._properties ['service_sid' ]
361
361
362
362
@property
363
363
def date_created (self ):
364
364
"""
365
- :returns: The date_created
365
+ :returns: The date that this resource was created.
366
366
:rtype: datetime
367
367
"""
368
368
return self ._properties ['date_created' ]
369
369
370
370
@property
371
371
def date_updated (self ):
372
372
"""
373
- :returns: The date_updated
373
+ :returns: The date that this resource was last updated.
374
374
:rtype: datetime
375
375
"""
376
376
return self ._properties ['date_updated' ]
377
377
378
378
@property
379
379
def endpoint (self ):
380
380
"""
381
- :returns: The endpoint
381
+ :returns: The unique endpoint identifier for this Binding.
382
382
:rtype: unicode
383
383
"""
384
384
return self ._properties ['endpoint' ]
385
385
386
386
@property
387
387
def identity (self ):
388
388
"""
389
- :returns: The identity
389
+ :returns: A unique string identifier for the Binding for this User in this Service.
390
390
:rtype: unicode
391
391
"""
392
392
return self ._properties ['identity' ]
393
393
394
394
@property
395
395
def user_sid (self ):
396
396
"""
397
- :returns: The user_sid
397
+ :returns: The unique id of the User for this binding.
398
398
:rtype: unicode
399
399
"""
400
400
return self ._properties ['user_sid' ]
401
401
402
402
@property
403
403
def credential_sid (self ):
404
404
"""
405
- :returns: The credential_sid
405
+ :returns: The unique id of the Credential for this binding.
406
406
:rtype: unicode
407
407
"""
408
408
return self ._properties ['credential_sid' ]
409
409
410
410
@property
411
411
def binding_type (self ):
412
412
"""
413
- :returns: The binding_type
413
+ :returns: The push technology to use for this binding.
414
414
:rtype: UserBindingInstance.BindingType
415
415
"""
416
416
return self ._properties ['binding_type' ]
417
417
418
418
@property
419
419
def message_types (self ):
420
420
"""
421
- :returns: The message_types
421
+ :returns: List of message types for this binding.
422
422
:rtype: unicode
423
423
"""
424
424
return self ._properties ['message_types' ]
425
425
426
426
@property
427
427
def url (self ):
428
428
"""
429
- :returns: The url
429
+ :returns: An absolute URL for this binding.
430
430
:rtype: unicode
431
431
"""
432
432
return self ._properties ['url' ]
0 commit comments