File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -472,16 +472,16 @@ contain all of the returned objects.
472472 Extending the API with bound methods
473473------------------------------------
474474
475- Extending the API is simple by binding your own methods to the top level API. By binding a method to
476- the WebexTeamsAPI, you can extend functionality and leverage all of the objects and quality of life
477- features.
475+ As the Webex Teams API is developed and features are added, it may be necessary to add functions to access those features.
476+ Extending the API is simple by binding your own methods to the top level API instance. By binding a method, you can
477+ extend functionality and leverage all of the objects and quality of life features of WebexTeamsAPI .
478478
479479.. code-block :: python
480480
481- >> > new_function ():
481+ >> > new_method ():
482482 ... pass
483- >> > WebexTeamsAPI().new_function = new_function
484- >> > output = WebexTeamsAPI.new_function (params)
483+ >> > WebexTeamsAPI().new_method = new_method
484+ >> > output = WebexTeamsAPI.new_method (params)
485485
486486
487487 *Copyright (c) 2016-2019 Cisco and/or its affiliates. *
You can’t perform that action at this time.
0 commit comments