diff --git a/ringcentral/http/api_exception_test.html b/ringcentral/http/api_exception_test.html index b65f857..b31fb2d 100644 --- a/ringcentral/http/api_exception_test.html +++ b/ringcentral/http/api_exception_test.html @@ -210,6 +210,8 @@
313 def delete(self, url, query_params=None, headers=None, skip_auth_check=False): -314 request = self._client.create_request('DELETE', url, query_params=query_params, headers=headers) +diff --git a/ringcentral/platform/platform_test.html b/ringcentral/platform/platform_test.html index 0b654ed..a072ef1 100644 --- a/ringcentral/platform/platform_test.html +++ b/ringcentral/platform/platform_test.html @@ -69,6 +69,12 @@313 def delete(self, url, body=None, query_params=None, headers=None, skip_auth_check=False): +314 request = self._client.create_request('DELETE', url, query_params=query_params, headers=headers, body=body) 315 return self.send_request(request, skip_auth_check=skip_auth_check)API Documentation
test_api_url_custom_prefixes ++ test_delete_with_body + ++ test_delete_without_body + @@ -131,7 +137,7 @@36 sdk.platform().login() 37 except Exception as e: 38 self.assertTrue( e ) - 39 + 39 40 def test_login_code_redirect(self, mock): 41 sdk = self.get_sdk(mock) 42 self.logout_mock(mock) @@ -235,10 +241,21 @@
140 url = '/analytics/phone/foo' 141 act = sdk.platform().create_url(url, add_server=True) 142 self.assertEqual(exp, act) -143 -144 -145if __name__ == '__main__': -146 unittest.main() +143 +144 def test_delete_with_body(self,mock): +145 sdk = self.get_sdk(mock) +146 self.delete_mock_with_body(mock) +147 res = sdk.platform().delete(url='/restapi/v2/accounts/~/extensions',body={"keepAssetsInInventory": True,"records": [{"id": "123"}]}) +148 self.assertTrue(mock.called) +149 +150 def test_delete_without_body(self, mock): +151 sdk = self.get_sdk(mock) +152 self.delete_mock_without_body(mock) +153 sdk.platform().delete(url='/restapi/v2/accounts/~/extensions') +154 self.assertTrue(mock.called) +155 +156if __name__ == '__main__': +157 unittest.main()
Encodes the given dictionary s
into a URL-encoded string.
Parameters:\n s (dict): A dictionary containing the key-value pairs to be encoded.
\n\nReturns:\n str: A URL-encoded string representing the input dictionary.
\n\nRaises:\n Exception: If neither urllib.urlencode
nor urllib.parse.urlencode
is available.
Note:\n This function checks for the presence of urllib.urlencode
and urllib.parse.urlencode
\n to ensure compatibility across Python 2 and Python 3.
Returns an iterator over key-value pairs of thing
.
If thing
has an iteritems
method, it is used; otherwise, thing.items()
is iterated over.
Parameters:\n thing: An iterable object.
\n\nReturns:\n iterator: An iterator over the key-value pairs of thing
.
Encodes the input string s
into base64 format.
Parameters:\n s (str): The string to be encoded.
\n\nReturns:\n str: The base64 encoded string.
\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.tostr": {"fullname": "ringcentral.core.tostr", "modulename": "ringcentral.core", "qualname": "tostr", "kind": "function", "doc": "\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.clean_decrypted": {"fullname": "ringcentral.core.clean_decrypted", "modulename": "ringcentral.core", "qualname": "clean_decrypted", "kind": "function", "doc": "Cleans the decrypted string s
by removing specific control characters.
Parameters:\n s (str): The decrypted string to be cleaned.
\n\nReturns:\n str: The cleaned decrypted string.
\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.http": {"fullname": "ringcentral.http", "modulename": "ringcentral.http", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception": {"fullname": "ringcentral.http.api_exception", "modulename": "ringcentral.http.api_exception", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception.ApiException": {"fullname": "ringcentral.http.api_exception.ApiException", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException", "kind": "class", "doc": "Common base class for all non-exit exceptions.
\n", "bases": "builtins.Exception"}, "ringcentral.http.api_exception.ApiException.__init__": {"fullname": "ringcentral.http.api_exception.ApiException.__init__", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException.__init__", "kind": "function", "doc": "\n", "signature": "(api_response, previous=None)"}, "ringcentral.http.api_exception.ApiException.api_response": {"fullname": "ringcentral.http.api_exception.ApiException.api_response", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException.api_response", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_exception_test": {"fullname": "ringcentral.http.api_exception_test", "modulename": "ringcentral.http.api_exception_test", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception_test.json_headers": {"fullname": "ringcentral.http.api_exception_test.json_headers", "modulename": "ringcentral.http.api_exception_test", "qualname": "json_headers", "kind": "variable", "doc": "\n", "default_value": "{'Content-Type': 'application/json'}"}, "ringcentral.http.api_exception_test.TestApiException": {"fullname": "ringcentral.http.api_exception_test.TestApiException", "modulename": "ringcentral.http.api_exception_test", "qualname": "TestApiException", "kind": "class", "doc": "A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nSend the HTTP request and handle the response.
\n\nArgs:\n request (obj): The HTTP request object.
\n\nReturns:\n obj: The HTTP response object.
\n\nRaises:\n ApiException: If an error occurs during the request or response handling.
\n", "signature": "(self, request):", "funcdef": "def"}, "ringcentral.http.client.Client.load_response": {"fullname": "ringcentral.http.client.Client.load_response", "modulename": "ringcentral.http.client", "qualname": "Client.load_response", "kind": "function", "doc": "\n", "signature": "(self, request):", "funcdef": "def"}, "ringcentral.http.client.Client.create_request": {"fullname": "ringcentral.http.client.Client.create_request", "modulename": "ringcentral.http.client", "qualname": "Client.create_request", "kind": "function", "doc": "Create an HTTP request object.
\n\nArgs:\n method (str): The HTTP method (e.g., GET, POST).\n url (str): The URL for the request.\n query_params (dict, optional): Dictionary containing query parameters.\n body (dict, optional): Request body data.\n headers (dict, optional): Request headers.
\n\nReturns:\n requests.Request: The HTTP request object.
\n", "signature": "(self, method='', url='', query_params=None, body=None, headers=None):", "funcdef": "def"}, "ringcentral.http.client_test": {"fullname": "ringcentral.http.client_test", "modulename": "ringcentral.http.client_test", "kind": "module", "doc": "\n"}, "ringcentral.http.client_test.body": {"fullname": "ringcentral.http.client_test.body", "modulename": "ringcentral.http.client_test", "qualname": "body", "kind": "variable", "doc": "\n", "default_value": "{'foo': 'bar', 'baz': 'qux'}"}, "ringcentral.http.client_test.TestClient": {"fullname": "ringcentral.http.client_test.TestClient", "modulename": "ringcentral.http.client_test", "qualname": "TestClient", "kind": "class", "doc": "A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nPossible attachment formats:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nEvents class representing various event types.
\n\nAttributes:\n refreshSuccess (str): Represents a successful refresh event.\n refreshError (str): Represents an error during refresh.\n loginSuccess (str): Represents a successful login event.\n loginError (str): Represents an error during login.\n logoutSuccess (str): Represents a successful logout event.\n logoutError (str): Represents an error during logout.
\n"}, "ringcentral.platform.events.Events.refreshSuccess": {"fullname": "ringcentral.platform.events.Events.refreshSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.refreshSuccess", "kind": "variable", "doc": "\n", "default_value": "'refreshSuccess'"}, "ringcentral.platform.events.Events.refreshError": {"fullname": "ringcentral.platform.events.Events.refreshError", "modulename": "ringcentral.platform.events", "qualname": "Events.refreshError", "kind": "variable", "doc": "\n", "default_value": "'refreshError'"}, "ringcentral.platform.events.Events.loginSuccess": {"fullname": "ringcentral.platform.events.Events.loginSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.loginSuccess", "kind": "variable", "doc": "\n", "default_value": "'loginSuccess'"}, "ringcentral.platform.events.Events.loginError": {"fullname": "ringcentral.platform.events.Events.loginError", "modulename": "ringcentral.platform.events", "qualname": "Events.loginError", "kind": "variable", "doc": "\n", "default_value": "'loginError'"}, "ringcentral.platform.events.Events.logoutSuccess": {"fullname": "ringcentral.platform.events.Events.logoutSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.logoutSuccess", "kind": "variable", "doc": "\n", "default_value": "'logoutSuccess'"}, "ringcentral.platform.events.Events.logoutError": {"fullname": "ringcentral.platform.events.Events.logoutError", "modulename": "ringcentral.platform.events", "qualname": "Events.logoutError", "kind": "variable", "doc": "\n", "default_value": "'logoutError'"}, "ringcentral.platform.platform": {"fullname": "ringcentral.platform.platform", "modulename": "ringcentral.platform.platform", "kind": "module", "doc": "\n"}, "ringcentral.platform.platform.ACCOUNT_ID": {"fullname": "ringcentral.platform.platform.ACCOUNT_ID", "modulename": "ringcentral.platform.platform", "qualname": "ACCOUNT_ID", "kind": "variable", "doc": "\n", "default_value": "'~'"}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"fullname": "ringcentral.platform.platform.ACCOUNT_PREFIX", "modulename": "ringcentral.platform.platform", "qualname": "ACCOUNT_PREFIX", "kind": "variable", "doc": "\n", "default_value": "'/account/'"}, "ringcentral.platform.platform.URL_PREFIX": {"fullname": "ringcentral.platform.platform.URL_PREFIX", "modulename": "ringcentral.platform.platform", "qualname": "URL_PREFIX", "kind": "variable", "doc": "\n", "default_value": "'/restapi'"}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"fullname": "ringcentral.platform.platform.TOKEN_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "TOKEN_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/token'"}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"fullname": "ringcentral.platform.platform.REVOKE_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "REVOKE_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/revoke'"}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"fullname": "ringcentral.platform.platform.AUTHORIZE_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "AUTHORIZE_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/authorize'"}, "ringcentral.platform.platform.API_VERSION": {"fullname": "ringcentral.platform.platform.API_VERSION", "modulename": "ringcentral.platform.platform", "qualname": "API_VERSION", "kind": "variable", "doc": "\n", "default_value": "'v1.0'"}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"fullname": "ringcentral.platform.platform.ACCESS_TOKEN_TTL", "modulename": "ringcentral.platform.platform", "qualname": "ACCESS_TOKEN_TTL", "kind": "variable", "doc": "\n", "default_value": "3600"}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"fullname": "ringcentral.platform.platform.REFRESH_TOKEN_TTL", "modulename": "ringcentral.platform.platform", "qualname": "REFRESH_TOKEN_TTL", "kind": "variable", "doc": "\n", "default_value": "604800"}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"fullname": "ringcentral.platform.platform.KNOWN_PREFIXES", "modulename": "ringcentral.platform.platform", "qualname": "KNOWN_PREFIXES", "kind": "variable", "doc": "\n", "default_value": "['/restapi', '/rcvideo', '/video', '/webinar', '/analytics', '/ai', '/team-messaging', '/scim', '/cx/']"}, "ringcentral.platform.platform.Platform": {"fullname": "ringcentral.platform.platform.Platform", "modulename": "ringcentral.platform.platform", "qualname": "Platform", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.platform.platform.Platform.__init__": {"fullname": "ringcentral.platform.platform.Platform.__init__", "modulename": "ringcentral.platform.platform", "qualname": "Platform.__init__", "kind": "function", "doc": "\n", "signature": "(\tclient,\tkey='',\tsecret='',\tserver='',\tname='',\tversion='',\tredirect_uri='',\tknown_prefixes=None)"}, "ringcentral.platform.platform.Platform.auth": {"fullname": "ringcentral.platform.platform.Platform.auth", "modulename": "ringcentral.platform.platform", "qualname": "Platform.auth", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.create_url": {"fullname": "ringcentral.platform.platform.Platform.create_url", "modulename": "ringcentral.platform.platform", "qualname": "Platform.create_url", "kind": "function", "doc": "Creates a complete URL based on the provided URL and additional parameters.
\n\nArgs:\n url (str): The base URL.\n add_server (bool): Whether to prepend the server URL if the provided URL doesn't contain 'http://' or 'https://'.\n add_method (str, optional): The HTTP method to append as a query parameter.\n add_token (bool): Whether to append the access token as a query parameter.
\n\nReturns:\n str: The complete URL.
\n\nNote:\n - If add_server
is True and the provided URL doesn't start with 'http://' or 'https://', the server URL will be prepended.\n - If the provided URL doesn't contain known prefixes or 'http://' or 'https://', the URL_PREFIX and API_VERSION will be appended.\n - If the provided URL contains ACCOUNT_PREFIX followed by ACCOUNT_ID, it will be replaced with ACCOUNT_PREFIX and the account ID associated with the SDK instance.\n - If add_method
is provided, it will be appended as a query parameter '_method'.\n - If add_token
is True, the access token associated with the SDK instance will be appended as a query parameter 'access_token'.
Checks if the user is currently logged in.
\n\nReturns:\n bool: True if the user is logged in, False otherwise.
\n\nNote:\n - This method checks if the access token is valid.\n - If the access token is not valid, it attempts to refresh it by calling the refresh
method.\n - If any exceptions occur during the process, it returns False.
Generates the URL for initiating the login process.
\n\nArgs:\n redirect_uri (str): The URI to which the user will be redirected after authentication.\n state (str, optional): A value to maintain state between the request and the callback. Default is ''.\n challenge (str, optional): The code challenge for PKCE (Proof Key for Code Exchange). Default is ''.\n challenge_method (str, optional): The code challenge method for PKCE. Default is 'S256'.
\n\nReturns:\n str: The login URL.
\n", "signature": "(self, redirect_uri, state='', challenge='', challenge_method='S256'):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.login": {"fullname": "ringcentral.platform.platform.Platform.login", "modulename": "ringcentral.platform.platform", "qualname": "Platform.login", "kind": "function", "doc": "Logs in the user using various authentication methods.
\n\nArgs:\n username (str, optional): The username for authentication. Required if password is provided. Default is ''.\n extension (str, optional): The extension associated with the username. Default is ''.\n password (str, optional): The password for authentication. Required if username is provided. Default is ''.\n code (str, optional): The authorization code for authentication. Default is ''.\n redirect_uri (str, optional): The URI to redirect to after authentication. Default is ''.\n jwt (str, optional): The JWT (JSON Web Token) for authentication. Default is ''.\n verifier (str, optional): The code verifier for PKCE (Proof Key for Code Exchange). Default is ''.
\n\nReturns:\n Response: The response object containing authentication data if successful.
\n\nRaises:\n Exception: If the login attempt fails or invalid parameters are provided.
\n\nNote:\n - This method supports multiple authentication flows including password-based, authorization code, and JWT.\n - It checks for the presence of required parameters and raises an exception if necessary.\n - Deprecation warning is issued for username-password login; recommend using JWT or OAuth instead.\n - Constructs the appropriate request body based on the provided parameters.\n - Uses create_url
to build the token endpoint URL, adding the server URL if required.\n - Sends the authentication request using _request_token
.\n - Triggers the loginSuccess or loginError event based on the outcome of the login attempt.
Refreshes the authentication tokens.
\n\nReturns:\n Response: The response object containing refreshed authentication data if successful.
\n\nRaises:\n Exception: If the refresh token has expired or if any error occurs during the refresh process.
\n\nNote:\n - This method checks if the refresh token is still valid using _auth.refresh_token_valid()
.\n - Constructs the request body with the grant type as 'refresh_token' and includes the refresh token.\n - Sends the token refresh request using _request_token
at this '/restapi/oauth/token end point.\n - Triggers the refreshSuccess or refreshError event based on the outcome of the refresh attempt.
Logs out the user by revoking the access token.
\n\nReturns:\n Response: The response object containing logout confirmation if successful.
\n\nRaises:\n Exception: If any error occurs during the logout process.
\n\nNote:\n - Constructs the request body with the access token to be revoked.\n - Sends the token revoke request using _request_token
at this /restapi/oauth/revoke end point.\n - Resets the authentication data using _auth.reset()
upon successful logout.\n - Triggers the logoutSuccess or logoutError event based on the outcome of the logout attempt.
Inflates the provided request object with necessary headers and URL modifications.
\n\nArgs:\n request (Request): The request object to be inflated.\n skip_auth_check (bool, optional): Whether to skip the authentication check and header addition. Default is False.
\n\nNote:\n - If skip_auth_check
is False (default), it ensures authentication by calling _ensure_authentication
and adds the 'Authorization' header.\n - Sets the 'User-Agent' and 'X-User-Agent' headers to the value specified in _userAgent
.\n - Modifies the request URL using create_url
, adding the server URL if necessary.
A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nCreate an instance of the class that will use the named test\nmethod when executed. Raises a ValueError if the instance does\nnot have a method with the specified name.
\n", "signature": "(method_name=None)"}, "ringcentral.test.testcase.TestCase.get_sdk": {"fullname": "ringcentral.test.testcase.TestCase.get_sdk", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.get_sdk", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.add": {"fullname": "ringcentral.test.testcase.TestCase.add", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.add", "kind": "function", "doc": "\n", "signature": "(self, mock, method, url, body, status=200):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.authentication_mock": {"fullname": "ringcentral.test.testcase.TestCase.authentication_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.authentication_mock", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.logout_mock": {"fullname": "ringcentral.test.testcase.TestCase.logout_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.logout_mock", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"fullname": "ringcentral.test.testcase.TestCase.presence_subscription_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.presence_subscription_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, id='1', detailed=True):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.refresh_mock": {"fullname": "ringcentral.test.testcase.TestCase.refresh_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.refresh_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, failure=False, expires_in=3600):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.subscription_mock": {"fullname": "ringcentral.test.testcase.TestCase.subscription_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.subscription_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, expires_in=54000, filters=None, id=None):", "funcdef": "def"}, "ringcentral.websocket": {"fullname": "ringcentral.websocket", "modulename": "ringcentral.websocket", "kind": "module", "doc": "\n"}, "ringcentral.websocket.events": {"fullname": "ringcentral.websocket.events", "modulename": "ringcentral.websocket.events", "kind": "module", "doc": "\n"}, "ringcentral.websocket.events.WebSocketEvents": {"fullname": "ringcentral.websocket.events.WebSocketEvents", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents", "kind": "class", "doc": "WebSocketEvents class representing various events related to WebSocket communication.
\n\nAttributes:\n getTokenError (str): Event triggered when an error occurs while retrieving the WebSocket token.\n createConnectionError (str): Event triggered when an error occurs while creating a WebSocket connection.\n connectionCreated (str): Event triggered when a WebSocket connection is successfully created.\n closeConnectionError (str): Event triggered when an error occurs while closing a WebSocket connection.\n recoverConnectionError (str): Event triggered when an error occurs while recovering a WebSocket connection.\n receiveMessage (str): Event triggered when a message is received over the WebSocket connection.\n sendMessageError (str): Event triggered when an error occurs while sending a message over the WebSocket connection.\n connectionNotReady (str): Event triggered when attempting to perform an action while the WebSocket connection is not ready.\n createSubscriptionError (str): Event triggered when an error occurs while creating a subscription.\n updateSubscriptionError (str): Event triggered when an error occurs while updating a subscription.\n removeSubscriptionError (str): Event triggered when an error occurs while removing a subscription.\n subscriptionCreated (str): Event triggered when a subscription is successfully created.\n subscriptionUpdated (str): Event triggered when a subscription is successfully updated.\n subscriptionRemoved (str): Event triggered when a subscription is successfully removed.\n receiveSubscriptionNotification (str): Event triggered when a subscription notification is received.
\n"}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.getTokenError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.getTokenError", "kind": "variable", "doc": "\n", "default_value": "'getTokenError'"}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.createConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.createConnectionError", "kind": "variable", "doc": "\n", "default_value": "'createConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.connectionCreated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.connectionCreated", "kind": "variable", "doc": "\n", "default_value": "'connectionCreated'"}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.closeConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.closeConnectionError", "kind": "variable", "doc": "\n", "default_value": "'closeConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.recoverConnectionError", "kind": "variable", "doc": "\n", "default_value": "'recoverConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"fullname": "ringcentral.websocket.events.WebSocketEvents.receiveMessage", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.receiveMessage", "kind": "variable", "doc": "\n", "default_value": "'receiveMessage'"}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.sendMessageError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.sendMessageError", "kind": "variable", "doc": "\n", "default_value": "'sendMessageError'"}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"fullname": "ringcentral.websocket.events.WebSocketEvents.connectionNotReady", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.connectionNotReady", "kind": "variable", "doc": "\n", "default_value": "'connectionNotReady'"}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.createSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'createSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.updateSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'updateSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.removeSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'removeSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionCreated", "kind": "variable", "doc": "\n", "default_value": "'subscriptionCreated'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionUpdated", "kind": "variable", "doc": "\n", "default_value": "'subscriptionUpdated'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionRemoved", "kind": "variable", "doc": "\n", "default_value": "'subscriptionRemoved'"}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"fullname": "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.receiveSubscriptionNotification", "kind": "variable", "doc": "\n", "default_value": "'receiveSubscriptionNotification'"}, "ringcentral.websocket.web_socket_client": {"fullname": "ringcentral.websocket.web_socket_client", "modulename": "ringcentral.websocket.web_socket_client", "kind": "module", "doc": "\n"}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.__init__", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.__init__", "kind": "function", "doc": "\n", "signature": "(platform)"}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.create_new_connection", "kind": "function", "doc": "Creates a new WebSocket connection.
\n\nReturns:\n Any: Response object containing the result of the connection creation.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Retrieves the WebSocket token using get_web_socket_token
.\n - Attempts to open a WebSocket connection using the retrieved token's URI and access token.\n - Triggers the createConnectionError event if an error occurs and raises the exception.
Retrieves a WebSocket token.
\n\nReturns:\n dict: WebSocket token containing URI and access token.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Sends a POST request to the '/restapi/oauth/wstoken' endpoint to obtain the WebSocket token.\n - Returns the WebSocket token as a dictionary containing the URI and access token.\n - Triggers the getTokenError event if an error occurs and raises the exception.
\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.open_connection", "kind": "function", "doc": "Opens a WebSocket connection.
\n\nArgs:\n ws_uri (str): The WebSocket URI.\n ws_access_token (str): The access token for WebSocket authentication.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Attempts to establish a WebSocket connection to the provided URI with the given access token.\n - Upon successful connection, sets up a heartbeat mechanism to maintain the connection.\n - Triggers the connectionCreated event upon successful connection establishment.\n - Listens for incoming messages and triggers the receiveMessage event for each received message.\n - Triggers the createConnectionError event if an error occurs during the connection process and raises the exception.
\n", "signature": "(self, ws_uri, ws_access_token):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_connection_info", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_connection", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.close_connection", "kind": "function", "doc": "Closes the WebSocket connection.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Sets the _done
flag to True to signal the termination of the heartbeat mechanism.\n - Sets the _is_ready
flag to False to indicate that the connection is no longer ready.\n - Retrieves the WebSocket connection using get_connection
.\n - Closes the WebSocket connection.\n - Triggers the closeConnectionError event if an error occurs during the closing process and raises the exception.
Sends a message over the WebSocket connection.
\n\nArgs:\n message (Any): The message to be sent.
\n\nRaises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.
\n\nNote:\n - Checks if the WebSocket connection is ready (_is_ready
flag).\n - If the connection is ready, resets the send attempt counter and sends the message.\n - If the connection is not ready, retries after a delay and increments the send attempt counter.\n - If the send attempt counter exceeds a threshold, triggers the connectionNotReady event and raises an exception.
Creates a subscription to WebSocket events.
\n\nArgs:\n events (list, optional): A list of events to subscribe to. Default is None.
\n\nRaises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.
\n\nNote:\n - If the WebSocket connection is ready (_is_ready
flag), resets the send attempt counter and creates a WebSocketSubscription instance.\n - Registers the subscription with the specified events.\n - If the connection is not ready, retries after a delay and increments the send attempt counter.\n - If the send attempt counter exceeds a threshold, triggers the connectionNotReady event and raises an exception.
Updates an existing WebSocket subscription with new events.
\n\nArgs:\n subscription : The WebSocket subscription to update.\n events (list, optional): A list of events to update the subscription with. Default is None.
\n\nReturns:\n WebSocketSubscription: The updated WebSocket subscription.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Updates the specified WebSocket subscription with the new events provided.\n - If the update is successful, returns the updated WebSocket subscription.\n - If an error occurs during the update process, triggers the updateSubscriptionError event and raises an exception.
\n", "signature": "(self, subscription, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.remove_subscription", "kind": "function", "doc": "Removes an existing WebSocket subscription.
\n\nArgs:\n subscription : The WebSocket subscription to remove.
\n\nRaises:\n Exception: If any error occurs during the removal process.
\n\nNote:\n - Removes the specified WebSocket subscription.\n - If the removal is successful, the subscription is effectively unsubscribed from the events it was subscribed to.\n - If an error occurs during the removal process, triggers the removeSubscriptionError event and raises an exception.
\n", "signature": "(self, subscription):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription": {"fullname": "ringcentral.websocket.web_socket_subscription", "modulename": "ringcentral.websocket.web_socket_subscription", "kind": "module", "doc": "\n"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.__init__", "kind": "function", "doc": "\n", "signature": "(web_socket_client)"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.on_message", "kind": "function", "doc": "\n", "signature": "(self, message):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.register", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.add_events", "kind": "function", "doc": "\n", "signature": "(self, events):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.set_events", "kind": "function", "doc": "\n", "signature": "(self, events):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.subscribe", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.update", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.remove", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.set_subscription", "kind": "function", "doc": "\n", "signature": "(self, data):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.get_subscription_info", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.reset", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.destroy", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}}, "docInfo": {"ringcentral": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.core": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.core.is_third": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "ringcentral.core.urlencode": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 94}, "ringcentral.core.iterator": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 63}, "ringcentral.core.base64encode": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ringcentral.core.tostr": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.core.clean_decrypted": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 37}, "ringcentral.http": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception.ApiException": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "ringcentral.http.api_exception.ApiException.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "ringcentral.http.api_exception.ApiException.api_response": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test.json_headers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test.TestApiException": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.ok": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.raw": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.body": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.text": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.json_dict": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.json": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.multipart": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.error": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.request": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.response": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.create_response": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.multipart_headers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.create_response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ringcentral.http.client": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client.Client": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client.Client.send": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 46}, "ringcentral.http.client.Client.load_response": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.client.Client.create_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 62}, "ringcentral.http.client_test": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client_test.body": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"qualname": 8, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.json_object": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 95, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.JsonObject": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.safe_name": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.json_object.unfold": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 86}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.MockPlatform": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.set_data": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.data": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.reset": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.access_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.refresh_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.token_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.access_token_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.events": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 61}, "ringcentral.platform.events.Events.refreshSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.refreshError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.loginSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.loginError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.logoutSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.logoutError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCOUNT_ID": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.URL_PREFIX": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.API_VERSION": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.platform.platform.Platform.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.auth": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.create_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 198}, "ringcentral.platform.platform.Platform.logged_in": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 67}, "ringcentral.platform.platform.Platform.login_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 85}, "ringcentral.platform.platform.Platform.login": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 235}, "ringcentral.platform.platform.Platform.refresh": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 110}, "ringcentral.platform.platform.Platform.logout": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 97}, "ringcentral.platform.platform.Platform.inflate_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 106}, "ringcentral.platform.platform.Platform.send_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.get": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.post": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.put": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.patch": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.delete": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"qualname": 6, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"qualname": 6, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.sdk": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.platform": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.create_web_socket_client": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.create_multipart_builder": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk_test": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk_test.TestSDK": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.sdk_test.TestSDK.test_instance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.test": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy.Spy": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy.Spy.args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.testcase": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 268}, "ringcentral.test.testcase.TestCase.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 33}, "ringcentral.test.testcase.TestCase.get_sdk": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.add": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.authentication_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.logout_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.refresh_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.subscription_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "ringcentral.websocket": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 216}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 76}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 73}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 109}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 88}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 107}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 114}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 99}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 74}, "ringcentral.websocket.web_socket_subscription": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}}, "length": 201, "save": true}, "index": {"qualname": {"root": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.tostr": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 24, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 9}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 13}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.Auth.token_type": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "d": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}}, "df": 5}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}}, "df": 12}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}}, "df": 10, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 6}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 10}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.JsonObject": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk.SDK": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}}, "df": 6}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 8, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}}, "df": 9}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 16}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}}, "df": 17}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.post": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.put": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.patch": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral": {"tf": 1}, "ringcentral.core": {"tf": 1}, "ringcentral.core.is_third": {"tf": 1}, "ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http": {"tf": 1}, "ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform": {"tf": 1}, "ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.platform.platform": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.sdk": {"tf": 1}, "ringcentral.sdk.SDK": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test": {"tf": 1}, "ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}, "ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket": {"tf": 1}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 201}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response.create_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 23}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 10}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core": {"tf": 1}, "ringcentral.core.is_third": {"tf": 1}, "ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 7}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.load_response": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 28}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.tostr": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.4142135623730951}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1.4142135623730951}, "ringcentral.test": {"tf": 1}, "ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}, "ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 56, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.add": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.4142135623730951}}, "df": 10}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 13}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.Auth.token_type": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "d": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 16}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http": {"tf": 1}, "ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 63}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 32, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}}, "df": 12}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.data": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.reset": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}}, "df": 12, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 8}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}}, "df": 27}}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 10, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.JsonObject": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk": {"tf": 1}, "ringcentral.sdk.SDK": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.__init__": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.platform": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1.4142135623730951}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}}, "df": 10}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 29}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1.4142135623730951}, "ringcentral.test.spy.Spy.args": {"tf": 1.4142135623730951}}, "df": 3}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 19, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 5}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 21, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 29, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket": {"tf": 1}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 46, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 16}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform": {"tf": 1}, "ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.platform.platform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.get": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.platform": {"tf": 1}}, "df": 62}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.post": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.put": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.patch": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"0": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}, "1": {"0": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}, "2": {"4": {"5": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"9": {"4": {"1": {"3": {"5": {"0": {"4": {"5": {"2": {"4": {"8": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"0": {"0": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"0": {"4": {"8": {"0": {"0": {"docs": {"ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"4": {"5": {"8": {"0": {"2": {"2": {"9": {"3": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.body": {"tf": 2}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.4142135623730951}}, "df": 33, "x": {"2": {"7": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 2}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 2}, "ringcentral.http.client_test.body": {"tf": 2.8284271247461903}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 7.874007874011811}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 4.242640687119285}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.4142135623730951}}, "df": 33}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "x": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}, "z": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}, "r": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"1": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "signature": {"root": {"1": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}, "2": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 2}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.__init__": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 3.7416573867739413}, "ringcentral.sdk.SDK.__init__": {"tf": 2}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.4142135623730951}}, "df": 8}, "docs": {}, "df": 0}, "5": {"4": {"0": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.is_third": {"tf": 2.6457513110645907}, "ringcentral.core.urlencode": {"tf": 3.1622776601683795}, "ringcentral.core.iterator": {"tf": 3.1622776601683795}, "ringcentral.core.base64encode": {"tf": 3.1622776601683795}, "ringcentral.core.tostr": {"tf": 3.1622776601683795}, "ringcentral.core.clean_decrypted": {"tf": 3.1622776601683795}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 4}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 3.1622776601683795}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 4.47213595499958}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.create_response": {"tf": 3.7416573867739413}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.create_response": {"tf": 4.69041575982343}, "ringcentral.http.client.Client.send": {"tf": 3.7416573867739413}, "ringcentral.http.client.Client.load_response": {"tf": 3.7416573867739413}, "ringcentral.http.client.Client.create_request": {"tf": 7.3484692283495345}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 3.1622776601683795}, "ringcentral.http.json_object.safe_name": {"tf": 3.1622776601683795}, "ringcentral.http.json_object.unfold": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 2.8284271247461903}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 3.7416573867739413}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 3.7416573867739413}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 4.898979485566356}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 4.898979485566356}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 4.242640687119285}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.set_data": {"tf": 4.242640687119285}, "ringcentral.platform.auth.Auth.data": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.reset": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.access_token": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.token_type": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.__init__": {"tf": 9.16515138991168}, "ringcentral.platform.platform.Platform.auth": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.create_url": {"tf": 6.164414002968976}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.login_url": {"tf": 6.6332495807108}, "ringcentral.platform.platform.Platform.login": {"tf": 9.38083151964686}, "ringcentral.platform.platform.Platform.refresh": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.logout": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.send_request": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.get": {"tf": 6.164414002968976}, "ringcentral.platform.platform.Platform.post": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.put": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.patch": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.delete": {"tf": 6.164414002968976}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 3.7416573867739413}, "ringcentral.sdk.SDK.__init__": {"tf": 7.681145747868608}, "ringcentral.sdk.SDK.platform": {"tf": 3.1622776601683795}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 3.1622776601683795}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 3.1622776601683795}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 3.1622776601683795}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 3.4641016151377544}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.add": {"tf": 5.830951894845301}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 5.656854249492381}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 5.477225575051661}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 6.164414002968976}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 4.69041575982343}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 3.1622776601683795}}, "df": 117, "s": {"2": {"5": {"6": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 99}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 3}}, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 8}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 4}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.__init__": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 20}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 7}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 19}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 10}, "i": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 5}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 6}}}}}, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 9}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 7}}}}}}, "j": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}, "n": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 1}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 1}}}}}, "bases": {"root": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}}, "df": 6}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 1}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "2": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "3": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "docs": {"ringcentral": {"tf": 1.7320508075688772}, "ringcentral.core": {"tf": 1.7320508075688772}, "ringcentral.core.is_third": {"tf": 1.7320508075688772}, "ringcentral.core.urlencode": {"tf": 5.0990195135927845}, "ringcentral.core.iterator": {"tf": 4.795831523312719}, "ringcentral.core.base64encode": {"tf": 3.4641016151377544}, "ringcentral.core.tostr": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 3.4641016151377544}, "ringcentral.http": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 5.656854249492381}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1.7320508075688772}, "ringcentral.http.api_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.create_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 5.656854249492381}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.create_response": {"tf": 1.7320508075688772}, "ringcentral.http.client": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.send": {"tf": 3.605551275463989}, "ringcentral.http.client.Client.load_response": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 3.7416573867739413}, "ringcentral.http.client_test": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.body": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 5.656854249492381}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1.7320508075688772}, "ringcentral.http.json_object": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.JsonObject": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.safe_name": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.unfold": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 6.324555320336759}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 5.656854249492381}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.7320508075688772}, "ringcentral.platform": {"tf": 1.7320508075688772}, "ringcentral.platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.data": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.reset": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1.7320508075688772}, "ringcentral.platform.events": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events": {"tf": 3.4641016151377544}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.loginError": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.7320508075688772}, "ringcentral.platform.platform": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 3.3166247903554}, "ringcentral.platform.platform.Platform.login_url": {"tf": 3.605551275463989}, "ringcentral.platform.platform.Platform.login": {"tf": 5.196152422706632}, "ringcentral.platform.platform.Platform.refresh": {"tf": 4.358898943540674}, "ringcentral.platform.platform.Platform.logout": {"tf": 4.358898943540674}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 4.58257569495584}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.get": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 5.656854249492381}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.7320508075688772}, "ringcentral.sdk": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.__init__": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.platform": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1.7320508075688772}, "ringcentral.sdk_test": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 5.656854249492381}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1.7320508075688772}, "ringcentral.test": {"tf": 1.7320508075688772}, "ringcentral.test.spy": {"tf": 1.7320508075688772}, "ringcentral.test.spy.Spy": {"tf": 1.7320508075688772}, "ringcentral.test.spy.Spy.args": {"tf": 1.7320508075688772}, "ringcentral.test.testcase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 5.656854249492381}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.add": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.7320508075688772}, "ringcentral.websocket": {"tf": 1.7320508075688772}, "ringcentral.websocket.events": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 4.58257569495584}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 4.123105625617661}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 4}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 4}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 4.123105625617661}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 3.605551275463989}, "ringcentral.websocket.web_socket_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1.7320508075688772}}, "df": 201, "e": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}, "d": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "d": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 13, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.events.Events": {"tf": 2}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 16, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 2}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 3.872983346207417}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 3.872983346207417}, "ringcentral.http.client.Client.send": {"tf": 2.23606797749979}, "ringcentral.http.client.Client.create_request": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 3.872983346207417}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 3.872983346207417}, "ringcentral.platform.platform.Platform.create_url": {"tf": 4}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login_url": {"tf": 3}, "ringcentral.platform.platform.Platform.login": {"tf": 4.47213595499958}, "ringcentral.platform.platform.Platform.refresh": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.logout": {"tf": 3.3166247903554}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 3.872983346207417}, "ringcentral.sdk_test.TestSDK": {"tf": 3.872983346207417}, "ringcentral.test.testcase.TestCase": {"tf": 3.872983346207417}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 3.3166247903554}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 2.8284271247461903}}, "df": 30, "i": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 12}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.iterator": {"tf": 2.23606797749979}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 9}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 26, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.logout": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 9, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.8284271247461903}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.8284271247461903}, "ringcentral.http.client_test.TestClient": {"tf": 2.8284271247461903}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.8284271247461903}, "ringcentral.sdk_test.TestSDK": {"tf": 2.8284271247461903}, "ringcentral.test.testcase.TestCase": {"tf": 2.8284271247461903}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}}}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}}, "df": 1}}}}}}}}}, "g": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 13}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}, "s": {"2": {"5": {"6": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}, "ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}, "ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 5}}}, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "l": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2}}, "df": 1}}}}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 2.23606797749979}}, "df": 4, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}}, "df": 10}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}}, "df": 5}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.449489742783178}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.449489742783178}, "ringcentral.http.client_test.TestClient": {"tf": 2.449489742783178}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.449489742783178}, "ringcentral.sdk_test.TestSDK": {"tf": 2.449489742783178}, "ringcentral.test.testcase.TestCase": {"tf": 2.449489742783178}}, "df": 10, "t": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 10, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 25}, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 2}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2}, "ringcentral.sdk_test.TestSDK": {"tf": 2}, "ringcentral.test.testcase.TestCase": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1.7320508075688772}}, "df": 1}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 2}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2}, "ringcentral.sdk_test.TestSDK": {"tf": 2}, "ringcentral.test.testcase.TestCase": {"tf": 2}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.605551275463989}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 19, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ringcentral.core.iterator": {"tf": 2}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 22, "d": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 22}, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 18}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 8}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 11}}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 3}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 6}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 9}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 4}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2}}, "df": 6, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.core.urlencode": {"tf": 2}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 2}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 5}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 8}, "r": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 13}}}}, "p": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 8, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2}}, "df": 1, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 1, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 1, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}}, "df": 8}}}}}, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 2}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 5}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 12}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}}, "df": 7}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": null}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": null}, "ringcentral.http.client_test.TestClient": {"tf": null}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": null}, "ringcentral.platform.platform_test.TestPlatform": {"tf": null}, "ringcentral.sdk_test.TestSDK": {"tf": null}, "ringcentral.test.testcase.TestCase": {"tf": null}}, "df": 7}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 2}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 11, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 3, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 1}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 4}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 3}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 3}, "ringcentral.http.client_test.TestClient": {"tf": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 3}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 3}, "ringcentral.sdk_test.TestSDK": {"tf": 3}, "ringcentral.test.testcase.TestCase": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {"ringcentral.core.base64encode": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 4}}}}, "y": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}}, "df": 12}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 4}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 16}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 3}}}, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 2.449489742783178}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 2}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 1, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 2}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.send": {"tf": 2}, "ringcentral.http.client.Client.create_request": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 8, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2}}, "df": 4}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2.8284271247461903}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 14}, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "b": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}}}}}}, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 12, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 15}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 9, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 16, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.6457513110645907}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.6457513110645907}, "ringcentral.http.client_test.TestClient": {"tf": 2.6457513110645907}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.6457513110645907}, "ringcentral.sdk_test.TestSDK": {"tf": 2.6457513110645907}, "ringcentral.test.testcase.TestCase": {"tf": 2.6457513110645907}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 17}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 2}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 8, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "r": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 11}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 12}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 2, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 3, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}}, "df": 15, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.449489742783178}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.449489742783178}, "ringcentral.http.client_test.TestClient": {"tf": 2.449489742783178}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.449489742783178}, "ringcentral.sdk_test.TestSDK": {"tf": 2.449489742783178}, "ringcentral.test.testcase.TestCase": {"tf": 2.449489742783178}}, "df": 8}}}}, "a": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2}}, "df": 10, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 8}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}, "x": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}}, "df": 9}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 10}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}}, "df": 9}}}, "/": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 9, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 1}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 2}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 2}}}}}, "x": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.7320508075688772}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2}}, "df": 1}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"ringcentral": {"fullname": "ringcentral", "modulename": "ringcentral", "kind": "module", "doc": "\n"}, "ringcentral.core": {"fullname": "ringcentral.core", "modulename": "ringcentral.core", "kind": "module", "doc": "\n"}, "ringcentral.core.is_third": {"fullname": "ringcentral.core.is_third", "modulename": "ringcentral.core", "qualname": "is_third", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "ringcentral.core.urlencode": {"fullname": "ringcentral.core.urlencode", "modulename": "ringcentral.core", "qualname": "urlencode", "kind": "function", "doc": "Encodes the given dictionary s
into a URL-encoded string.
Parameters:\n s (dict): A dictionary containing the key-value pairs to be encoded.
\n\nReturns:\n str: A URL-encoded string representing the input dictionary.
\n\nRaises:\n Exception: If neither urllib.urlencode
nor urllib.parse.urlencode
is available.
Note:\n This function checks for the presence of urllib.urlencode
and urllib.parse.urlencode
\n to ensure compatibility across Python 2 and Python 3.
Returns an iterator over key-value pairs of thing
.
If thing
has an iteritems
method, it is used; otherwise, thing.items()
is iterated over.
Parameters:\n thing: An iterable object.
\n\nReturns:\n iterator: An iterator over the key-value pairs of thing
.
Encodes the input string s
into base64 format.
Parameters:\n s (str): The string to be encoded.
\n\nReturns:\n str: The base64 encoded string.
\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.tostr": {"fullname": "ringcentral.core.tostr", "modulename": "ringcentral.core", "qualname": "tostr", "kind": "function", "doc": "\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.clean_decrypted": {"fullname": "ringcentral.core.clean_decrypted", "modulename": "ringcentral.core", "qualname": "clean_decrypted", "kind": "function", "doc": "Cleans the decrypted string s
by removing specific control characters.
Parameters:\n s (str): The decrypted string to be cleaned.
\n\nReturns:\n str: The cleaned decrypted string.
\n", "signature": "(s):", "funcdef": "def"}, "ringcentral.http": {"fullname": "ringcentral.http", "modulename": "ringcentral.http", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception": {"fullname": "ringcentral.http.api_exception", "modulename": "ringcentral.http.api_exception", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception.ApiException": {"fullname": "ringcentral.http.api_exception.ApiException", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException", "kind": "class", "doc": "Common base class for all non-exit exceptions.
\n", "bases": "builtins.Exception"}, "ringcentral.http.api_exception.ApiException.__init__": {"fullname": "ringcentral.http.api_exception.ApiException.__init__", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException.__init__", "kind": "function", "doc": "\n", "signature": "(api_response, previous=None)"}, "ringcentral.http.api_exception.ApiException.api_response": {"fullname": "ringcentral.http.api_exception.ApiException.api_response", "modulename": "ringcentral.http.api_exception", "qualname": "ApiException.api_response", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_exception_test": {"fullname": "ringcentral.http.api_exception_test", "modulename": "ringcentral.http.api_exception_test", "kind": "module", "doc": "\n"}, "ringcentral.http.api_exception_test.json_headers": {"fullname": "ringcentral.http.api_exception_test.json_headers", "modulename": "ringcentral.http.api_exception_test", "qualname": "json_headers", "kind": "variable", "doc": "\n", "default_value": "{'Content-Type': 'application/json'}"}, "ringcentral.http.api_exception_test.TestApiException": {"fullname": "ringcentral.http.api_exception_test.TestApiException", "modulename": "ringcentral.http.api_exception_test", "qualname": "TestApiException", "kind": "class", "doc": "A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nSend the HTTP request and handle the response.
\n\nArgs:\n request (obj): The HTTP request object.
\n\nReturns:\n obj: The HTTP response object.
\n\nRaises:\n ApiException: If an error occurs during the request or response handling.
\n", "signature": "(self, request):", "funcdef": "def"}, "ringcentral.http.client.Client.load_response": {"fullname": "ringcentral.http.client.Client.load_response", "modulename": "ringcentral.http.client", "qualname": "Client.load_response", "kind": "function", "doc": "\n", "signature": "(self, request):", "funcdef": "def"}, "ringcentral.http.client.Client.create_request": {"fullname": "ringcentral.http.client.Client.create_request", "modulename": "ringcentral.http.client", "qualname": "Client.create_request", "kind": "function", "doc": "Create an HTTP request object.
\n\nArgs:\n method (str): The HTTP method (e.g., GET, POST).\n url (str): The URL for the request.\n query_params (dict, optional): Dictionary containing query parameters.\n body (dict, optional): Request body data.\n headers (dict, optional): Request headers.
\n\nReturns:\n requests.Request: The HTTP request object.
\n", "signature": "(self, method='', url='', query_params=None, body=None, headers=None):", "funcdef": "def"}, "ringcentral.http.client_test": {"fullname": "ringcentral.http.client_test", "modulename": "ringcentral.http.client_test", "kind": "module", "doc": "\n"}, "ringcentral.http.client_test.body": {"fullname": "ringcentral.http.client_test.body", "modulename": "ringcentral.http.client_test", "qualname": "body", "kind": "variable", "doc": "\n", "default_value": "{'foo': 'bar', 'baz': 'qux'}"}, "ringcentral.http.client_test.TestClient": {"fullname": "ringcentral.http.client_test.TestClient", "modulename": "ringcentral.http.client_test", "qualname": "TestClient", "kind": "class", "doc": "A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nPossible attachment formats:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nEvents class representing various event types.
\n\nAttributes:\n refreshSuccess (str): Represents a successful refresh event.\n refreshError (str): Represents an error during refresh.\n loginSuccess (str): Represents a successful login event.\n loginError (str): Represents an error during login.\n logoutSuccess (str): Represents a successful logout event.\n logoutError (str): Represents an error during logout.
\n"}, "ringcentral.platform.events.Events.refreshSuccess": {"fullname": "ringcentral.platform.events.Events.refreshSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.refreshSuccess", "kind": "variable", "doc": "\n", "default_value": "'refreshSuccess'"}, "ringcentral.platform.events.Events.refreshError": {"fullname": "ringcentral.platform.events.Events.refreshError", "modulename": "ringcentral.platform.events", "qualname": "Events.refreshError", "kind": "variable", "doc": "\n", "default_value": "'refreshError'"}, "ringcentral.platform.events.Events.loginSuccess": {"fullname": "ringcentral.platform.events.Events.loginSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.loginSuccess", "kind": "variable", "doc": "\n", "default_value": "'loginSuccess'"}, "ringcentral.platform.events.Events.loginError": {"fullname": "ringcentral.platform.events.Events.loginError", "modulename": "ringcentral.platform.events", "qualname": "Events.loginError", "kind": "variable", "doc": "\n", "default_value": "'loginError'"}, "ringcentral.platform.events.Events.logoutSuccess": {"fullname": "ringcentral.platform.events.Events.logoutSuccess", "modulename": "ringcentral.platform.events", "qualname": "Events.logoutSuccess", "kind": "variable", "doc": "\n", "default_value": "'logoutSuccess'"}, "ringcentral.platform.events.Events.logoutError": {"fullname": "ringcentral.platform.events.Events.logoutError", "modulename": "ringcentral.platform.events", "qualname": "Events.logoutError", "kind": "variable", "doc": "\n", "default_value": "'logoutError'"}, "ringcentral.platform.platform": {"fullname": "ringcentral.platform.platform", "modulename": "ringcentral.platform.platform", "kind": "module", "doc": "\n"}, "ringcentral.platform.platform.ACCOUNT_ID": {"fullname": "ringcentral.platform.platform.ACCOUNT_ID", "modulename": "ringcentral.platform.platform", "qualname": "ACCOUNT_ID", "kind": "variable", "doc": "\n", "default_value": "'~'"}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"fullname": "ringcentral.platform.platform.ACCOUNT_PREFIX", "modulename": "ringcentral.platform.platform", "qualname": "ACCOUNT_PREFIX", "kind": "variable", "doc": "\n", "default_value": "'/account/'"}, "ringcentral.platform.platform.URL_PREFIX": {"fullname": "ringcentral.platform.platform.URL_PREFIX", "modulename": "ringcentral.platform.platform", "qualname": "URL_PREFIX", "kind": "variable", "doc": "\n", "default_value": "'/restapi'"}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"fullname": "ringcentral.platform.platform.TOKEN_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "TOKEN_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/token'"}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"fullname": "ringcentral.platform.platform.REVOKE_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "REVOKE_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/revoke'"}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"fullname": "ringcentral.platform.platform.AUTHORIZE_ENDPOINT", "modulename": "ringcentral.platform.platform", "qualname": "AUTHORIZE_ENDPOINT", "kind": "variable", "doc": "\n", "default_value": "'/restapi/oauth/authorize'"}, "ringcentral.platform.platform.API_VERSION": {"fullname": "ringcentral.platform.platform.API_VERSION", "modulename": "ringcentral.platform.platform", "qualname": "API_VERSION", "kind": "variable", "doc": "\n", "default_value": "'v1.0'"}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"fullname": "ringcentral.platform.platform.ACCESS_TOKEN_TTL", "modulename": "ringcentral.platform.platform", "qualname": "ACCESS_TOKEN_TTL", "kind": "variable", "doc": "\n", "default_value": "3600"}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"fullname": "ringcentral.platform.platform.REFRESH_TOKEN_TTL", "modulename": "ringcentral.platform.platform", "qualname": "REFRESH_TOKEN_TTL", "kind": "variable", "doc": "\n", "default_value": "604800"}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"fullname": "ringcentral.platform.platform.KNOWN_PREFIXES", "modulename": "ringcentral.platform.platform", "qualname": "KNOWN_PREFIXES", "kind": "variable", "doc": "\n", "default_value": "['/restapi', '/rcvideo', '/video', '/webinar', '/analytics', '/ai', '/team-messaging', '/scim', '/cx/']"}, "ringcentral.platform.platform.Platform": {"fullname": "ringcentral.platform.platform.Platform", "modulename": "ringcentral.platform.platform", "qualname": "Platform", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.platform.platform.Platform.__init__": {"fullname": "ringcentral.platform.platform.Platform.__init__", "modulename": "ringcentral.platform.platform", "qualname": "Platform.__init__", "kind": "function", "doc": "\n", "signature": "(\tclient,\tkey='',\tsecret='',\tserver='',\tname='',\tversion='',\tredirect_uri='',\tknown_prefixes=None)"}, "ringcentral.platform.platform.Platform.auth": {"fullname": "ringcentral.platform.platform.Platform.auth", "modulename": "ringcentral.platform.platform", "qualname": "Platform.auth", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.create_url": {"fullname": "ringcentral.platform.platform.Platform.create_url", "modulename": "ringcentral.platform.platform", "qualname": "Platform.create_url", "kind": "function", "doc": "Creates a complete URL based on the provided URL and additional parameters.
\n\nArgs:\n url (str): The base URL.\n add_server (bool): Whether to prepend the server URL if the provided URL doesn't contain 'http://' or 'https://'.\n add_method (str, optional): The HTTP method to append as a query parameter.\n add_token (bool): Whether to append the access token as a query parameter.
\n\nReturns:\n str: The complete URL.
\n\nNote:\n - If add_server
is True and the provided URL doesn't start with 'http://' or 'https://', the server URL will be prepended.\n - If the provided URL doesn't contain known prefixes or 'http://' or 'https://', the URL_PREFIX and API_VERSION will be appended.\n - If the provided URL contains ACCOUNT_PREFIX followed by ACCOUNT_ID, it will be replaced with ACCOUNT_PREFIX and the account ID associated with the SDK instance.\n - If add_method
is provided, it will be appended as a query parameter '_method'.\n - If add_token
is True, the access token associated with the SDK instance will be appended as a query parameter 'access_token'.
Checks if the user is currently logged in.
\n\nReturns:\n bool: True if the user is logged in, False otherwise.
\n\nNote:\n - This method checks if the access token is valid.\n - If the access token is not valid, it attempts to refresh it by calling the refresh
method.\n - If any exceptions occur during the process, it returns False.
Generates the URL for initiating the login process.
\n\nArgs:\n redirect_uri (str): The URI to which the user will be redirected after authentication.\n state (str, optional): A value to maintain state between the request and the callback. Default is ''.\n challenge (str, optional): The code challenge for PKCE (Proof Key for Code Exchange). Default is ''.\n challenge_method (str, optional): The code challenge method for PKCE. Default is 'S256'.
\n\nReturns:\n str: The login URL.
\n", "signature": "(self, redirect_uri, state='', challenge='', challenge_method='S256'):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.login": {"fullname": "ringcentral.platform.platform.Platform.login", "modulename": "ringcentral.platform.platform", "qualname": "Platform.login", "kind": "function", "doc": "Logs in the user using various authentication methods.
\n\nArgs:\n username (str, optional): The username for authentication. Required if password is provided. Default is ''.\n extension (str, optional): The extension associated with the username. Default is ''.\n password (str, optional): The password for authentication. Required if username is provided. Default is ''.\n code (str, optional): The authorization code for authentication. Default is ''.\n redirect_uri (str, optional): The URI to redirect to after authentication. Default is ''.\n jwt (str, optional): The JWT (JSON Web Token) for authentication. Default is ''.\n verifier (str, optional): The code verifier for PKCE (Proof Key for Code Exchange). Default is ''.
\n\nReturns:\n Response: The response object containing authentication data if successful.
\n\nRaises:\n Exception: If the login attempt fails or invalid parameters are provided.
\n\nNote:\n - This method supports multiple authentication flows including password-based, authorization code, and JWT.\n - It checks for the presence of required parameters and raises an exception if necessary.\n - Deprecation warning is issued for username-password login; recommend using JWT or OAuth instead.\n - Constructs the appropriate request body based on the provided parameters.\n - Uses create_url
to build the token endpoint URL, adding the server URL if required.\n - Sends the authentication request using _request_token
.\n - Triggers the loginSuccess or loginError event based on the outcome of the login attempt.
Refreshes the authentication tokens.
\n\nReturns:\n Response: The response object containing refreshed authentication data if successful.
\n\nRaises:\n Exception: If the refresh token has expired or if any error occurs during the refresh process.
\n\nNote:\n - This method checks if the refresh token is still valid using _auth.refresh_token_valid()
.\n - Constructs the request body with the grant type as 'refresh_token' and includes the refresh token.\n - Sends the token refresh request using _request_token
at this '/restapi/oauth/token end point.\n - Triggers the refreshSuccess or refreshError event based on the outcome of the refresh attempt.
Logs out the user by revoking the access token.
\n\nReturns:\n Response: The response object containing logout confirmation if successful.
\n\nRaises:\n Exception: If any error occurs during the logout process.
\n\nNote:\n - Constructs the request body with the access token to be revoked.\n - Sends the token revoke request using _request_token
at this /restapi/oauth/revoke end point.\n - Resets the authentication data using _auth.reset()
upon successful logout.\n - Triggers the logoutSuccess or logoutError event based on the outcome of the logout attempt.
Inflates the provided request object with necessary headers and URL modifications.
\n\nArgs:\n request (Request): The request object to be inflated.\n skip_auth_check (bool, optional): Whether to skip the authentication check and header addition. Default is False.
\n\nNote:\n - If skip_auth_check
is False (default), it ensures authentication by calling _ensure_authentication
and adds the 'Authorization' header.\n - Sets the 'User-Agent' and 'X-User-Agent' headers to the value specified in _userAgent
.\n - Modifies the request URL using create_url
, adding the server URL if necessary.
A class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nA class whose instances are single test cases.
\n\nBy default, the test code itself should be placed in a method named\n'runTest'.
\n\nIf the fixture may be used for many test cases, create as\nmany test methods as are needed. When instantiating such a TestCase\nsubclass, specify in the constructor arguments the name of the test method\nthat the instance is to execute.
\n\nTest authors should subclass TestCase for their own tests. Construction\nand deconstruction of the test's environment ('fixture') can be\nimplemented by overriding the 'setUp' and 'tearDown' methods respectively.
\n\nIf it is necessary to override the __init__ method, the base class\n__init__ method must always be called. It is important that subclasses\nshould not change the signature of their __init__ method, since instances\nof the classes are instantiated automatically by parts of the framework\nin order to be run.
\n\nWhen subclassing TestCase, you can set these attributes:
\n\nCreate an instance of the class that will use the named test\nmethod when executed. Raises a ValueError if the instance does\nnot have a method with the specified name.
\n", "signature": "(method_name=None)"}, "ringcentral.test.testcase.TestCase.get_sdk": {"fullname": "ringcentral.test.testcase.TestCase.get_sdk", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.get_sdk", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.add": {"fullname": "ringcentral.test.testcase.TestCase.add", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.add", "kind": "function", "doc": "\n", "signature": "(self, mock, method, url, body, status=200):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.authentication_mock": {"fullname": "ringcentral.test.testcase.TestCase.authentication_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.authentication_mock", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.logout_mock": {"fullname": "ringcentral.test.testcase.TestCase.logout_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.logout_mock", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"fullname": "ringcentral.test.testcase.TestCase.presence_subscription_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.presence_subscription_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, id='1', detailed=True):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.refresh_mock": {"fullname": "ringcentral.test.testcase.TestCase.refresh_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.refresh_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, failure=False, expires_in=3600):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.subscription_mock": {"fullname": "ringcentral.test.testcase.TestCase.subscription_mock", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.subscription_mock", "kind": "function", "doc": "\n", "signature": "(self, mock, expires_in=54000, filters=None, id=None):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"fullname": "ringcentral.test.testcase.TestCase.delete_mock_with_body", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.delete_mock_with_body", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"fullname": "ringcentral.test.testcase.TestCase.delete_mock_without_body", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.delete_mock_without_body", "kind": "function", "doc": "\n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.websocket": {"fullname": "ringcentral.websocket", "modulename": "ringcentral.websocket", "kind": "module", "doc": "\n"}, "ringcentral.websocket.events": {"fullname": "ringcentral.websocket.events", "modulename": "ringcentral.websocket.events", "kind": "module", "doc": "\n"}, "ringcentral.websocket.events.WebSocketEvents": {"fullname": "ringcentral.websocket.events.WebSocketEvents", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents", "kind": "class", "doc": "WebSocketEvents class representing various events related to WebSocket communication.
\n\nAttributes:\n getTokenError (str): Event triggered when an error occurs while retrieving the WebSocket token.\n createConnectionError (str): Event triggered when an error occurs while creating a WebSocket connection.\n connectionCreated (str): Event triggered when a WebSocket connection is successfully created.\n closeConnectionError (str): Event triggered when an error occurs while closing a WebSocket connection.\n recoverConnectionError (str): Event triggered when an error occurs while recovering a WebSocket connection.\n receiveMessage (str): Event triggered when a message is received over the WebSocket connection.\n sendMessageError (str): Event triggered when an error occurs while sending a message over the WebSocket connection.\n connectionNotReady (str): Event triggered when attempting to perform an action while the WebSocket connection is not ready.\n createSubscriptionError (str): Event triggered when an error occurs while creating a subscription.\n updateSubscriptionError (str): Event triggered when an error occurs while updating a subscription.\n removeSubscriptionError (str): Event triggered when an error occurs while removing a subscription.\n subscriptionCreated (str): Event triggered when a subscription is successfully created.\n subscriptionUpdated (str): Event triggered when a subscription is successfully updated.\n subscriptionRemoved (str): Event triggered when a subscription is successfully removed.\n receiveSubscriptionNotification (str): Event triggered when a subscription notification is received.
\n"}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.getTokenError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.getTokenError", "kind": "variable", "doc": "\n", "default_value": "'getTokenError'"}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.createConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.createConnectionError", "kind": "variable", "doc": "\n", "default_value": "'createConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.connectionCreated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.connectionCreated", "kind": "variable", "doc": "\n", "default_value": "'connectionCreated'"}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.closeConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.closeConnectionError", "kind": "variable", "doc": "\n", "default_value": "'closeConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.recoverConnectionError", "kind": "variable", "doc": "\n", "default_value": "'recoverConnectionError'"}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"fullname": "ringcentral.websocket.events.WebSocketEvents.receiveMessage", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.receiveMessage", "kind": "variable", "doc": "\n", "default_value": "'receiveMessage'"}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.sendMessageError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.sendMessageError", "kind": "variable", "doc": "\n", "default_value": "'sendMessageError'"}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"fullname": "ringcentral.websocket.events.WebSocketEvents.connectionNotReady", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.connectionNotReady", "kind": "variable", "doc": "\n", "default_value": "'connectionNotReady'"}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.createSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'createSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.updateSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'updateSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"fullname": "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.removeSubscriptionError", "kind": "variable", "doc": "\n", "default_value": "'removeSubscriptionError'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionCreated", "kind": "variable", "doc": "\n", "default_value": "'subscriptionCreated'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionUpdated", "kind": "variable", "doc": "\n", "default_value": "'subscriptionUpdated'"}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"fullname": "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.subscriptionRemoved", "kind": "variable", "doc": "\n", "default_value": "'subscriptionRemoved'"}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"fullname": "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification", "modulename": "ringcentral.websocket.events", "qualname": "WebSocketEvents.receiveSubscriptionNotification", "kind": "variable", "doc": "\n", "default_value": "'receiveSubscriptionNotification'"}, "ringcentral.websocket.web_socket_client": {"fullname": "ringcentral.websocket.web_socket_client", "modulename": "ringcentral.websocket.web_socket_client", "kind": "module", "doc": "\n"}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.__init__", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.__init__", "kind": "function", "doc": "\n", "signature": "(platform)"}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.create_new_connection", "kind": "function", "doc": "Creates a new WebSocket connection.
\n\nReturns:\n Any: Response object containing the result of the connection creation.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Retrieves the WebSocket token using get_web_socket_token
.\n - Attempts to open a WebSocket connection using the retrieved token's URI and access token.\n - Triggers the createConnectionError event if an error occurs and raises the exception.
Retrieves a WebSocket token.
\n\nReturns:\n dict: WebSocket token containing URI and access token.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Sends a POST request to the '/restapi/oauth/wstoken' endpoint to obtain the WebSocket token.\n - Returns the WebSocket token as a dictionary containing the URI and access token.\n - Triggers the getTokenError event if an error occurs and raises the exception.
\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.open_connection", "kind": "function", "doc": "Opens a WebSocket connection.
\n\nArgs:\n ws_uri (str): The WebSocket URI.\n ws_access_token (str): The access token for WebSocket authentication.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Attempts to establish a WebSocket connection to the provided URI with the given access token.\n - Upon successful connection, sets up a heartbeat mechanism to maintain the connection.\n - Triggers the connectionCreated event upon successful connection establishment.\n - Listens for incoming messages and triggers the receiveMessage event for each received message.\n - Triggers the createConnectionError event if an error occurs during the connection process and raises the exception.
\n", "signature": "(self, ws_uri, ws_access_token):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_connection_info", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_connection", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.close_connection", "kind": "function", "doc": "Closes the WebSocket connection.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Sets the _done
flag to True to signal the termination of the heartbeat mechanism.\n - Sets the _is_ready
flag to False to indicate that the connection is no longer ready.\n - Retrieves the WebSocket connection using get_connection
.\n - Closes the WebSocket connection.\n - Triggers the closeConnectionError event if an error occurs during the closing process and raises the exception.
Sends a message over the WebSocket connection.
\n\nArgs:\n message (Any): The message to be sent.
\n\nRaises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.
\n\nNote:\n - Checks if the WebSocket connection is ready (_is_ready
flag).\n - If the connection is ready, resets the send attempt counter and sends the message.\n - If the connection is not ready, retries after a delay and increments the send attempt counter.\n - If the send attempt counter exceeds a threshold, triggers the connectionNotReady event and raises an exception.
Creates a subscription to WebSocket events.
\n\nArgs:\n events (list, optional): A list of events to subscribe to. Default is None.
\n\nRaises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.
\n\nNote:\n - If the WebSocket connection is ready (_is_ready
flag), resets the send attempt counter and creates a WebSocketSubscription instance.\n - Registers the subscription with the specified events.\n - If the connection is not ready, retries after a delay and increments the send attempt counter.\n - If the send attempt counter exceeds a threshold, triggers the connectionNotReady event and raises an exception.
Updates an existing WebSocket subscription with new events.
\n\nArgs:\n subscription : The WebSocket subscription to update.\n events (list, optional): A list of events to update the subscription with. Default is None.
\n\nReturns:\n WebSocketSubscription: The updated WebSocket subscription.
\n\nRaises:\n Exception: If any error occurs during the process.
\n\nNote:\n - Updates the specified WebSocket subscription with the new events provided.\n - If the update is successful, returns the updated WebSocket subscription.\n - If an error occurs during the update process, triggers the updateSubscriptionError event and raises an exception.
\n", "signature": "(self, subscription, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.remove_subscription", "kind": "function", "doc": "Removes an existing WebSocket subscription.
\n\nArgs:\n subscription : The WebSocket subscription to remove.
\n\nRaises:\n Exception: If any error occurs during the removal process.
\n\nNote:\n - Removes the specified WebSocket subscription.\n - If the removal is successful, the subscription is effectively unsubscribed from the events it was subscribed to.\n - If an error occurs during the removal process, triggers the removeSubscriptionError event and raises an exception.
\n", "signature": "(self, subscription):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription": {"fullname": "ringcentral.websocket.web_socket_subscription", "modulename": "ringcentral.websocket.web_socket_subscription", "kind": "module", "doc": "\n"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription", "kind": "class", "doc": "Event system for python
\n", "bases": "observable.core.Observable"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.__init__", "kind": "function", "doc": "\n", "signature": "(web_socket_client)"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.on_message", "kind": "function", "doc": "\n", "signature": "(self, message):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.register", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.add_events", "kind": "function", "doc": "\n", "signature": "(self, events):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.set_events", "kind": "function", "doc": "\n", "signature": "(self, events):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.subscribe", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.update", "kind": "function", "doc": "\n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.remove", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.set_subscription", "kind": "function", "doc": "\n", "signature": "(self, data):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.get_subscription_info", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.reset", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"fullname": "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy", "modulename": "ringcentral.websocket.web_socket_subscription", "qualname": "WebSocketSubscription.destroy", "kind": "function", "doc": "\n", "signature": "(self):", "funcdef": "def"}}, "docInfo": {"ringcentral": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.core": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.core.is_third": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "ringcentral.core.urlencode": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 94}, "ringcentral.core.iterator": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 63}, "ringcentral.core.base64encode": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 34}, "ringcentral.core.tostr": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.core.clean_decrypted": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 37}, "ringcentral.http": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception.ApiException": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "ringcentral.http.api_exception.ApiException.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 3}, "ringcentral.http.api_exception.ApiException.api_response": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test.json_headers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_exception_test.TestApiException": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.ok": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.raw": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.body": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.text": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.json_dict": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.json": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.multipart": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.error": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.request": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.ApiResponse.response": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response.create_response": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.multipart_headers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 15, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.api_response_test.create_response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ringcentral.http.client": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client.Client": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client.Client.send": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 46}, "ringcentral.http.client.Client.load_response": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.client.Client.create_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 68, "bases": 0, "doc": 62}, "ringcentral.http.client_test": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client_test.body": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"qualname": 8, "fullname": 12, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"qualname": 7, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.json_object": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 95, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.JsonObject": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.json_object.safe_name": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.json_object.unfold": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 86}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.MockPlatform": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.set_data": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.data": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.reset": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.access_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.refresh_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.token_type": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.access_token_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.events": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 61}, "ringcentral.platform.events.Events.refreshSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.refreshError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.loginSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.loginError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.logoutSuccess": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.events.Events.logoutError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCOUNT_ID": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.URL_PREFIX": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.API_VERSION": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 30, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.platform.platform.Platform.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.auth": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.create_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 198}, "ringcentral.platform.platform.Platform.logged_in": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 67}, "ringcentral.platform.platform.Platform.login_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 85}, "ringcentral.platform.platform.Platform.login": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 235}, "ringcentral.platform.platform.Platform.refresh": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 110}, "ringcentral.platform.platform.Platform.logout": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 97}, "ringcentral.platform.platform.Platform.inflate_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 106}, "ringcentral.platform.platform.Platform.send_request": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.get": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.post": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.put": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.patch": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform.Platform.delete": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"qualname": 6, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"qualname": 6, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"qualname": 5, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.sdk": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.platform": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.create_web_socket_client": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk.SDK.create_multipart_builder": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.sdk_test": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.sdk_test.TestSDK": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 268}, "ringcentral.sdk_test.TestSDK.test_instance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.test": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy.Spy": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.spy.Spy.args": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.testcase": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 268}, "ringcentral.test.testcase.TestCase.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 33}, "ringcentral.test.testcase.TestCase.get_sdk": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.add": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.authentication_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.logout_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.refresh_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.subscription_mock": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 216}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 76}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 73}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 109}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 88}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 107}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 114}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 99}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 74}, "ringcentral.websocket.web_socket_subscription": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 6}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}}, "length": 205, "save": true}, "index": {"qualname": {"root": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.tostr": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 26, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 11}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}}, "df": 15}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.Auth.token_type": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "d": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 12}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}}, "df": 5}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}}, "df": 12}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}}, "df": 10, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 6}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 10}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.JsonObject": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk.SDK": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}}, "df": 6}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 8, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}}, "df": 9}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 16}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}}, "df": 17}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.post": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.put": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.patch": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral": {"tf": 1}, "ringcentral.core": {"tf": 1}, "ringcentral.core.is_third": {"tf": 1}, "ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http": {"tf": 1}, "ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform": {"tf": 1}, "ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.platform.platform": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.sdk": {"tf": 1}, "ringcentral.sdk.SDK": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test": {"tf": 1}, "ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}, "ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}, "ringcentral.websocket": {"tf": 1}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 205}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response.create_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 23}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 10}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core": {"tf": 1}, "ringcentral.core.is_third": {"tf": 1}, "ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 7}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.load_response": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 28}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 8}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.is_third": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.tostr": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1.4142135623730951}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1.4142135623730951}, "ringcentral.test": {"tf": 1}, "ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1}, "ringcentral.test.spy.Spy.args": {"tf": 1}, "ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 60, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.add": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1.4142135623730951}}, "df": 12}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}}, "df": 15}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.auth.Auth.token_type": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "d": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 12}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 16}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http": {"tf": 1}, "ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client": {"tf": 1}, "ringcentral.http.client.Client": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test": {"tf": 1}, "ringcentral.http.client_test.body": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 63}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response": {"tf": 1}, "ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.platform.platform.API_VERSION": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 32, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}}, "df": 3}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_response.ApiResponse": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}}, "df": 12}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.data": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.reset": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1.4142135623730951}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}}, "df": 12, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.spy.Spy.args": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test": {"tf": 1}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 8}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}}, "df": 27}}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 10, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.JsonObject": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.sdk": {"tf": 1}, "ringcentral.sdk.SDK": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.__init__": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.platform": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1.4142135623730951}, "ringcentral.sdk_test": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}}, "df": 10}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 29}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.test.spy": {"tf": 1}, "ringcentral.test.spy.Spy": {"tf": 1.4142135623730951}, "ringcentral.test.spy.Spy.args": {"tf": 1.4142135623730951}}, "df": 3}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 19, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}}, "df": 1}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object": {"tf": 1}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}, "ringcentral.http.json_object.JsonObject": {"tf": 1}, "ringcentral.http.json_object.safe_name": {"tf": 1}, "ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 5}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.multipart_builder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}}, "df": 21, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 29, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket": {"tf": 1}, "ringcentral.websocket.events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}, "ringcentral.websocket.web_socket_client": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 46, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 16}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.load_response": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform": {"tf": 1}, "ringcentral.platform.auth": {"tf": 1}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}, "ringcentral.platform.auth.Auth": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.events": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}, "ringcentral.platform.events.Events.refreshError": {"tf": 1}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1}, "ringcentral.platform.events.Events.loginError": {"tf": 1}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}, "ringcentral.platform.events.Events.logoutError": {"tf": 1}, "ringcentral.platform.platform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.get": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1.4142135623730951}, "ringcentral.sdk.SDK.platform": {"tf": 1}}, "df": 64}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.post": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.put": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.patch": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"0": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}, "1": {"0": {"docs": {"ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1}}, "df": 1}, "2": {"4": {"5": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"9": {"4": {"1": {"3": {"5": {"0": {"4": {"5": {"2": {"4": {"8": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"0": {"0": {"docs": {"ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"0": {"4": {"8": {"0": {"0": {"docs": {"ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"4": {"5": {"8": {"0": {"2": {"2": {"9": {"3": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.body": {"tf": 2}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.4142135623730951}}, "df": 33, "x": {"2": {"7": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 2}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 2}, "ringcentral.http.client_test.body": {"tf": 2.8284271247461903}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 7.874007874011811}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.loginError": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 4.242640687119285}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.4142135623730951}}, "df": 33}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "x": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.json_headers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response_test.multipart_headers": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}, "z": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}, "r": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.http.client_test.body": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.refreshSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.refreshError": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.platform.platform.URL_PREFIX": {"tf": 1}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.loginSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.loginError": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events.logoutSuccess": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events.logoutError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"1": {"docs": {"ringcentral.platform.platform.API_VERSION": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "signature": {"root": {"1": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}, "2": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 2}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.__init__": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 3.7416573867739413}, "ringcentral.sdk.SDK.__init__": {"tf": 2}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.4142135623730951}}, "df": 8}, "docs": {}, "df": 0}, "5": {"4": {"0": {"0": {"0": {"docs": {"ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.is_third": {"tf": 2.6457513110645907}, "ringcentral.core.urlencode": {"tf": 3.1622776601683795}, "ringcentral.core.iterator": {"tf": 3.1622776601683795}, "ringcentral.core.base64encode": {"tf": 3.1622776601683795}, "ringcentral.core.tostr": {"tf": 3.1622776601683795}, "ringcentral.core.clean_decrypted": {"tf": 3.1622776601683795}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 4}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 3.1622776601683795}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 4.47213595499958}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 3.1622776601683795}, "ringcentral.http.api_response.create_response": {"tf": 3.7416573867739413}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 3.1622776601683795}, "ringcentral.http.api_response_test.create_response": {"tf": 4.69041575982343}, "ringcentral.http.client.Client.send": {"tf": 3.7416573867739413}, "ringcentral.http.client.Client.load_response": {"tf": 3.7416573867739413}, "ringcentral.http.client.Client.create_request": {"tf": 7.3484692283495345}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 3.1622776601683795}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 3.1622776601683795}, "ringcentral.http.json_object.safe_name": {"tf": 3.1622776601683795}, "ringcentral.http.json_object.unfold": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 2.8284271247461903}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 3.7416573867739413}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 3.7416573867739413}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 4.898979485566356}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 4.898979485566356}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 4.242640687119285}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 3.1622776601683795}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.set_data": {"tf": 4.242640687119285}, "ringcentral.platform.auth.Auth.data": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.reset": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.access_token": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.token_type": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 3.1622776601683795}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.__init__": {"tf": 9.16515138991168}, "ringcentral.platform.platform.Platform.auth": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.create_url": {"tf": 6.164414002968976}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.login_url": {"tf": 6.6332495807108}, "ringcentral.platform.platform.Platform.login": {"tf": 9.38083151964686}, "ringcentral.platform.platform.Platform.refresh": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.logout": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.send_request": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.get": {"tf": 6.164414002968976}, "ringcentral.platform.platform.Platform.post": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.put": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.patch": {"tf": 7.211102550927978}, "ringcentral.platform.platform.Platform.delete": {"tf": 7.211102550927978}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 3.7416573867739413}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 3.7416573867739413}, "ringcentral.sdk.SDK.__init__": {"tf": 7.681145747868608}, "ringcentral.sdk.SDK.platform": {"tf": 3.1622776601683795}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 3.1622776601683795}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 3.1622776601683795}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 3.1622776601683795}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 3.4641016151377544}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.add": {"tf": 5.830951894845301}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 5.656854249492381}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 5.477225575051661}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 6.164414002968976}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 3.7416573867739413}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 4.69041575982343}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 4.242640687119285}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 3.1622776601683795}}, "df": 121, "s": {"2": {"5": {"6": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.tostr": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception.ApiException.api_response": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.auth.Auth.data": {"tf": 1}, "ringcentral.platform.auth.Auth.reset": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1}, "ringcentral.platform.platform.Platform.auth": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.sdk.SDK.platform": {"tf": 1}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1}}, "df": 103}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 3}}, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 8}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.load_response": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 4}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_response.create_response": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"ringcentral.http.json_object.safe_name": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception.ApiException.__init__": {"tf": 1}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.__init__": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 20}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_response_test.create_response": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 6}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1}}, "df": 23}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.test.testcase.TestCase.add": {"tf": 1}}, "df": 10}, "i": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 5}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 6}}}}}, "d": {"docs": {"ringcentral.http.json_object.unfold": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.platform.auth.Auth.set_data": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}}, "df": 7}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.__init__": {"tf": 1}, "ringcentral.sdk.SDK.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1}, "ringcentral.platform.platform.Platform.get": {"tf": 1}, "ringcentral.platform.platform.Platform.post": {"tf": 1}, "ringcentral.platform.platform.Platform.put": {"tf": 1}, "ringcentral.platform.platform.Platform.patch": {"tf": 1}, "ringcentral.platform.platform.Platform.delete": {"tf": 1}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 9}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1}}, "df": 7}}}}}}, "j": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}, "n": {"docs": {"ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 1}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1}}, "df": 1}}}}}, "bases": {"root": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}}, "df": 6}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 1}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "2": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "3": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "docs": {"ringcentral": {"tf": 1.7320508075688772}, "ringcentral.core": {"tf": 1.7320508075688772}, "ringcentral.core.is_third": {"tf": 1.7320508075688772}, "ringcentral.core.urlencode": {"tf": 5.0990195135927845}, "ringcentral.core.iterator": {"tf": 4.795831523312719}, "ringcentral.core.base64encode": {"tf": 3.4641016151377544}, "ringcentral.core.tostr": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 3.4641016151377544}, "ringcentral.http": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception.ApiException.api_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.json_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 5.656854249492381}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"tf": 1.7320508075688772}, "ringcentral.http.api_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.ok": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.raw": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.body": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.text": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.json_dict": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.json": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.multipart": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.error": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.request": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.ApiResponse.response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response.create_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.multipart_headers": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 5.656854249492381}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.create_response": {"tf": 1.7320508075688772}, "ringcentral.http.client": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.send": {"tf": 3.605551275463989}, "ringcentral.http.client.Client.load_response": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 3.7416573867739413}, "ringcentral.http.client_test": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.body": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 5.656854249492381}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"tf": 1.7320508075688772}, "ringcentral.http.json_object": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.JsonObject": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.safe_name": {"tf": 1.7320508075688772}, "ringcentral.http.json_object.unfold": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 6.324555320336759}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.MockPlatform": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 5.656854249492381}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"tf": 1.7320508075688772}, "ringcentral.platform": {"tf": 1.7320508075688772}, "ringcentral.platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.set_data": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.data": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.reset": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.access_token": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.refresh_token": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.token_type": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.access_token_valid": {"tf": 1.7320508075688772}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"tf": 1.7320508075688772}, "ringcentral.platform.events": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events": {"tf": 3.4641016151377544}, "ringcentral.platform.events.Events.refreshSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.refreshError": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.loginSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.loginError": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.logoutSuccess": {"tf": 1.7320508075688772}, "ringcentral.platform.events.Events.logoutError": {"tf": 1.7320508075688772}, "ringcentral.platform.platform": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_ID": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCOUNT_PREFIX": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.URL_PREFIX": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.TOKEN_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.REVOKE_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.AUTHORIZE_ENDPOINT": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.API_VERSION": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.ACCESS_TOKEN_TTL": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.REFRESH_TOKEN_TTL": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.KNOWN_PREFIXES": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.__init__": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.auth": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 4.69041575982343}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 3.3166247903554}, "ringcentral.platform.platform.Platform.login_url": {"tf": 3.605551275463989}, "ringcentral.platform.platform.Platform.login": {"tf": 5.196152422706632}, "ringcentral.platform.platform.Platform.refresh": {"tf": 4.358898943540674}, "ringcentral.platform.platform.Platform.logout": {"tf": 4.358898943540674}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 4.58257569495584}, "ringcentral.platform.platform.Platform.send_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.get": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.post": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.put": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.patch": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.delete": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 5.656854249492381}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"tf": 1.7320508075688772}, "ringcentral.sdk": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.__init__": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.platform": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.create_web_socket_client": {"tf": 1.7320508075688772}, "ringcentral.sdk.SDK.create_multipart_builder": {"tf": 1.7320508075688772}, "ringcentral.sdk_test": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 5.656854249492381}, "ringcentral.sdk_test.TestSDK.test_instance": {"tf": 1.7320508075688772}, "ringcentral.test": {"tf": 1.7320508075688772}, "ringcentral.test.spy": {"tf": 1.7320508075688772}, "ringcentral.test.spy.Spy": {"tf": 1.7320508075688772}, "ringcentral.test.spy.Spy.args": {"tf": 1.7320508075688772}, "ringcentral.test.testcase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 5.656854249492381}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.get_sdk": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.add": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.authentication_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.logout_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.presence_subscription_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.refresh_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.subscription_mock": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.delete_mock_with_body": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.delete_mock_without_body": {"tf": 1.7320508075688772}, "ringcentral.websocket": {"tf": 1.7320508075688772}, "ringcentral.websocket.events": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 4.58257569495584}, "ringcentral.websocket.events.WebSocketEvents.getTokenError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.createConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.connectionCreated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.closeConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.recoverConnectionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.receiveMessage": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.sendMessageError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.connectionNotReady": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.createSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.updateSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.removeSubscriptionError": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionCreated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionUpdated": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.subscriptionRemoved": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents.receiveSubscriptionNotification": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.__init__": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 3.7416573867739413}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection_info": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 4.123105625617661}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 4}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 4}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 4.123105625617661}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 3.605551275463989}, "ringcentral.websocket.web_socket_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.__init__": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.on_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.register": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.add_events": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_events": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.subscribe": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.update": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.remove": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.set_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.get_subscription_info": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.reset": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription.destroy": {"tf": 1.7320508075688772}}, "df": 205, "e": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}, "d": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 19, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "d": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 13, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.events.Events": {"tf": 2}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 16, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 2}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 3.872983346207417}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 3.872983346207417}, "ringcentral.http.client.Client.send": {"tf": 2.23606797749979}, "ringcentral.http.client.Client.create_request": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 3.872983346207417}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 3.872983346207417}, "ringcentral.platform.platform.Platform.create_url": {"tf": 4}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login_url": {"tf": 3}, "ringcentral.platform.platform.Platform.login": {"tf": 4.47213595499958}, "ringcentral.platform.platform.Platform.refresh": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.logout": {"tf": 3.3166247903554}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 3.872983346207417}, "ringcentral.sdk_test.TestSDK": {"tf": 3.872983346207417}, "ringcentral.test.testcase.TestCase": {"tf": 3.872983346207417}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 3.3166247903554}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 3.4641016151377544}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 3.1622776601683795}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 2.8284271247461903}}, "df": 30, "i": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 12}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.iterator": {"tf": 2.23606797749979}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 9}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 26, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.logout": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 9, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.8284271247461903}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.8284271247461903}, "ringcentral.http.client_test.TestClient": {"tf": 2.8284271247461903}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.8284271247461903}, "ringcentral.sdk_test.TestSDK": {"tf": 2.8284271247461903}, "ringcentral.test.testcase.TestCase": {"tf": 2.8284271247461903}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}}}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 11}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}}, "df": 1}}}}}}}}}, "g": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 13}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}, "s": {"2": {"5": {"6": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}, "ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1.4142135623730951}, "ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1.7320508075688772}, "ringcentral.core.clean_decrypted": {"tf": 1.7320508075688772}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 5}}}, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "l": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2}}, "df": 1}}}}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 2.23606797749979}}, "df": 4, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}}, "df": 10}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}}, "df": 5}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 3}}}}}, "o": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.449489742783178}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.449489742783178}, "ringcentral.http.client_test.TestClient": {"tf": 2.449489742783178}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.449489742783178}, "ringcentral.sdk_test.TestSDK": {"tf": 2.449489742783178}, "ringcentral.test.testcase.TestCase": {"tf": 2.449489742783178}}, "df": 10, "t": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 10, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 25}, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 2}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 2}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 3.1622776601683795}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2}, "ringcentral.sdk_test.TestSDK": {"tf": 2}, "ringcentral.test.testcase.TestCase": {"tf": 2}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1.7320508075688772}}, "df": 1}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {"ringcentral.core.urlencode": {"tf": 1.7320508075688772}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2}, "ringcentral.http.client_test.TestClient": {"tf": 2}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2}, "ringcentral.sdk_test.TestSDK": {"tf": 2}, "ringcentral.test.testcase.TestCase": {"tf": 2}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.605551275463989}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 19, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"ringcentral.core.iterator": {"tf": 2}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 22, "d": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 22}, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 18}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 8}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "s": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 11}}}, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 3}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 6}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 9}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 4}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 3.4641016151377544}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2}}, "df": 6, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.core.urlencode": {"tf": 2}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 2}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}}, "df": 5}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 8}, "r": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 13}}}}, "p": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 8, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 2}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2}}, "df": 1, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 1, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 1, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}}, "df": 8}}}}}, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 2}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 5}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 12}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}}, "df": 7}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": null}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": null}, "ringcentral.http.client_test.TestClient": {"tf": null}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": null}, "ringcentral.platform.platform_test.TestPlatform": {"tf": null}, "ringcentral.sdk_test.TestSDK": {"tf": null}, "ringcentral.test.testcase.TestCase": {"tf": null}}, "df": 7}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 2.6457513110645907}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 2.449489742783178}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 6, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.23606797749979}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 2}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}}, "df": 7}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 11, "s": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 3, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "v": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 1}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 4}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 3}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 3}, "ringcentral.http.client_test.TestClient": {"tf": 3}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 3}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 3}, "ringcentral.sdk_test.TestSDK": {"tf": 3}, "ringcentral.test.testcase.TestCase": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"6": {"4": {"docs": {"ringcentral.core.base64encode": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 4}}}}, "y": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}}, "df": 12}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 4}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.core.base64encode": {"tf": 1}, "ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 16}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}, "d": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 3}}}, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 2.449489742783178}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 2}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.core.clean_decrypted": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 1, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 5}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 2}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.client.Client.send": {"tf": 2}, "ringcentral.http.client.Client.create_request": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.logout": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 8, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1, "y": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 2}}, "df": 4}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 2.8284271247461903}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}, "d": {"docs": {"ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "d": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 14}, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}, "b": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}}}}}}, "w": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2}}, "o": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}}, "df": 12, "e": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 15}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"ringcentral.http.api_exception.ApiException": {"tf": 1}}, "df": 1, "e": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 9, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.core.urlencode": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.http.api_exception.ApiException": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 2.8284271247461903}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_subscription.WebSocketSubscription": {"tf": 1}}, "df": 16, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.base64encode": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.core.urlencode": {"tf": 1}, "ringcentral.core.iterator": {"tf": 1.4142135623730951}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.6457513110645907}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.6457513110645907}, "ringcentral.http.client_test.TestClient": {"tf": 2.6457513110645907}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.6457513110645907}, "ringcentral.sdk_test.TestSDK": {"tf": 2.6457513110645907}, "ringcentral.test.testcase.TestCase": {"tf": 2.6457513110645907}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 17}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.core.iterator": {"tf": 1.7320508075688772}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 2}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.client.Client.send": {"tf": 1.4142135623730951}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 8, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "r": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 11}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1}}, "df": 1, "s": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 2.8284271247461903}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.4142135623730951}}, "df": 12}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.login": {"tf": 2.6457513110645907}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 2, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 8}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ringcentral.http.client.Client.send": {"tf": 1.7320508075688772}, "ringcentral.http.client.Client.create_request": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 3, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.7320508075688772}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1.4142135623730951}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.core.iterator": {"tf": 1}, "ringcentral.http.api_exception_test.TestApiException": {"tf": 2.23606797749979}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.23606797749979}, "ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 2.23606797749979}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.23606797749979}, "ringcentral.sdk_test.TestSDK": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase": {"tf": 2.23606797749979}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1.4142135623730951}}, "df": 15, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 2.449489742783178}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 2.449489742783178}, "ringcentral.http.client_test.TestClient": {"tf": 2.449489742783178}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 2.449489742783178}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 2.449489742783178}, "ringcentral.sdk_test.TestSDK": {"tf": 2.449489742783178}, "ringcentral.test.testcase.TestCase": {"tf": 2.449489742783178}}, "df": 8}}}}, "a": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 2}}, "df": 10, "s": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 8}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.4142135623730951}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.4142135623730951}, "ringcentral.http.client_test.TestClient": {"tf": 1.4142135623730951}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.4142135623730951}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.4142135623730951}, "ringcentral.sdk_test.TestSDK": {"tf": 1.4142135623730951}, "ringcentral.test.testcase.TestCase": {"tf": 1.4142135623730951}}, "df": 7}}, "x": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.events.WebSocketEvents": {"tf": 3.872983346207417}}, "df": 9}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.create_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 9}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 8}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1.7320508075688772}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1.7320508075688772}, "ringcentral.http.client_test.TestClient": {"tf": 1.7320508075688772}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1.7320508075688772}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2.23606797749979}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1.7320508075688772}, "ringcentral.sdk_test.TestSDK": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase": {"tf": 1.7320508075688772}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}}, "df": 10}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.platform.platform.Platform.create_url": {"tf": 2}, "ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.refresh": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}, "ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}, "ringcentral.test.testcase.TestCase.__init__": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.7320508075688772}}, "df": 9}}}, "/": {"docs": {}, "df": 0, "o": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 3}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_new_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 2}, "ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1.7320508075688772}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 2.23606797749979}, "ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1.7320508075688772}}, "df": 9, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.events.WebSocketEvents": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.remove_subscription": {"tf": 1}}, "df": 1}}, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1.4142135623730951}}, "df": 1}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.close_connection": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.4142135623730951}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login_url": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.login": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.events.Events": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.logout": {"tf": 2}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ringcentral.platform.events.Events": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ringcentral.platform.platform.Platform.logged_in": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}, "ringcentral.platform.platform.Platform.logout": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ringcentral.http.api_exception_test.TestApiException": {"tf": 1}, "ringcentral.http.api_response_test.TestApiResponse": {"tf": 1}, "ringcentral.http.client_test.TestClient": {"tf": 1}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"tf": 1}, "ringcentral.platform.platform_test.TestPlatform": {"tf": 1}, "ringcentral.sdk_test.TestSDK": {"tf": 1}, "ringcentral.test.testcase.TestCase": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"tf": 1.4142135623730951}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.websocket.web_socket_client.WebSocketClient.open_connection": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ringcentral.http.client.Client.create_request": {"tf": 1.4142135623730951}, "ringcentral.platform.platform.Platform.create_url": {"tf": 2}}, "df": 2}}}}}, "x": {"docs": {"ringcentral.platform.platform.Platform.inflate_request": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "s": {"docs": {"ringcentral.http.multipart_builder.MultipartBuilder.add": {"tf": 1.7320508075688772}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 2}}, "df": 1}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ringcentral.platform.platform.Platform.login": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough.