@@ -23,8 +23,8 @@ def __init__(self, version, service_sid, user_sid):
2323 Initialize the UserBindingList
2424
2525 :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.
2828
2929 :returns: twilio.rest.chat.v2.service.user.user_binding.UserBindingList
3030 :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):
4242 is reached.
4343 The results are returned as a generator, so this operation is memory efficient.
4444
45- :param UserBindingInstance.BindingType binding_type: The binding_type
45+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
4646 :param int limit: Upper limit for the number of records to return. stream()
4747 guarantees to never return more than limit. Default is no limit
4848 :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):
6565 Unlike stream(), this operation is eager and will load `limit` records into
6666 memory before returning.
6767
68- :param UserBindingInstance.BindingType binding_type: The binding_type
68+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
6969 :param int limit: Upper limit for the number of records to return. list() guarantees
7070 never to return more than limit. Default is no limit
7171 :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,
8484 Retrieve a single page of UserBindingInstance records from the API.
8585 Request is executed immediately
8686
87- :param UserBindingInstance.BindingType binding_type: The binding_type
87+ :param UserBindingInstance.BindingType binding_type: The push technology used for the bindings returned.
8888 :param str page_token: PageToken provided by the API
8989 :param int page_number: Page Number, this value is simply for client state
9090 :param int page_size: Number of records to return, defaults to 50
@@ -175,8 +175,8 @@ def __init__(self, version, response, solution):
175175
176176 :param Version version: Version that contains the resource
177177 :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.
180180
181181 :returns: twilio.rest.chat.v2.service.user.user_binding.UserBindingPage
182182 :rtype: twilio.rest.chat.v2.service.user.user_binding.UserBindingPage
@@ -338,95 +338,95 @@ def _proxy(self):
338338 @property
339339 def sid (self ):
340340 """
341- :returns: The sid
341+ :returns: A 34 character string that uniquely identifies this resource.
342342 :rtype: unicode
343343 """
344344 return self ._properties ['sid' ]
345345
346346 @property
347347 def account_sid (self ):
348348 """
349- :returns: The account_sid
349+ :returns: The unique id of the Account responsible for this binding.
350350 :rtype: unicode
351351 """
352352 return self ._properties ['account_sid' ]
353353
354354 @property
355355 def service_sid (self ):
356356 """
357- :returns: The service_sid
357+ :returns: The unique id of the Service this binding belongs to.
358358 :rtype: unicode
359359 """
360360 return self ._properties ['service_sid' ]
361361
362362 @property
363363 def date_created (self ):
364364 """
365- :returns: The date_created
365+ :returns: The date that this resource was created.
366366 :rtype: datetime
367367 """
368368 return self ._properties ['date_created' ]
369369
370370 @property
371371 def date_updated (self ):
372372 """
373- :returns: The date_updated
373+ :returns: The date that this resource was last updated.
374374 :rtype: datetime
375375 """
376376 return self ._properties ['date_updated' ]
377377
378378 @property
379379 def endpoint (self ):
380380 """
381- :returns: The endpoint
381+ :returns: The unique endpoint identifier for this Binding.
382382 :rtype: unicode
383383 """
384384 return self ._properties ['endpoint' ]
385385
386386 @property
387387 def identity (self ):
388388 """
389- :returns: The identity
389+ :returns: A unique string identifier for the Binding for this User in this Service.
390390 :rtype: unicode
391391 """
392392 return self ._properties ['identity' ]
393393
394394 @property
395395 def user_sid (self ):
396396 """
397- :returns: The user_sid
397+ :returns: The unique id of the User for this binding.
398398 :rtype: unicode
399399 """
400400 return self ._properties ['user_sid' ]
401401
402402 @property
403403 def credential_sid (self ):
404404 """
405- :returns: The credential_sid
405+ :returns: The unique id of the Credential for this binding.
406406 :rtype: unicode
407407 """
408408 return self ._properties ['credential_sid' ]
409409
410410 @property
411411 def binding_type (self ):
412412 """
413- :returns: The binding_type
413+ :returns: The push technology to use for this binding.
414414 :rtype: UserBindingInstance.BindingType
415415 """
416416 return self ._properties ['binding_type' ]
417417
418418 @property
419419 def message_types (self ):
420420 """
421- :returns: The message_types
421+ :returns: List of message types for this binding.
422422 :rtype: unicode
423423 """
424424 return self ._properties ['message_types' ]
425425
426426 @property
427427 def url (self ):
428428 """
429- :returns: The url
429+ :returns: An absolute URL for this binding.
430430 :rtype: unicode
431431 """
432432 return self ._properties ['url' ]
0 commit comments