@@ -73,26 +73,14 @@ def __init__(self, session, object_factory):
7373 self ._object_factory = object_factory
7474
7575 @generator_container
76- def list (self , orgId = None , max = None , ** request_parameters ):
76+ def list (self , orgId = None , ** request_parameters ):
7777 """List all licenses for a given organization.
7878
7979 If no orgId is specified, the default is the organization of the
8080 authenticated user.
8181
82- This method supports Webex Teams's implementation of RFC5988 Web
83- Linking to provide pagination support. It returns a generator
84- container that incrementally yields all objects returned by the
85- query. The generator will automatically request additional 'pages' of
86- responses from Webex as needed until all responses have been returned.
87- The container makes the generator safe for reuse. A new API call will
88- be made, using the same parameters that were specified when the
89- generator was created, every time a new iterator is requested from the
90- container.
91-
9282 Args:
9383 orgId(basestring): Specify the organization, by ID.
94- max(int): Limit the maximum number of items returned from the Webex
95- Teams service per request.
9684 **request_parameters: Additional request parameters (provides
9785 support for parameters that may be added in the future).
9886
@@ -106,12 +94,10 @@ def list(self, orgId=None, max=None, **request_parameters):
10694
10795 """
10896 check_type (orgId , basestring )
109- check_type (max , int )
11097
11198 params = dict_from_items_with_values (
11299 request_parameters ,
113100 orgId = orgId ,
114- max = max ,
115101 )
116102
117103 # API request - get items
0 commit comments