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 @@
Inherited Members
presence_subscription_mock
refresh_mock
subscription_mock
+
delete_mock_with_body
+
delete_mock_without_body
unittest.case.TestCase
diff --git a/ringcentral/http/api_response_test.html b/ringcentral/http/api_response_test.html index e13fc87..30999a5 100644 --- a/ringcentral/http/api_response_test.html +++ b/ringcentral/http/api_response_test.html @@ -507,6 +507,8 @@
Inherited Members
presence_subscription_mock
refresh_mock
subscription_mock
+
delete_mock_with_body
+
delete_mock_without_body
unittest.case.TestCase
diff --git a/ringcentral/http/client_test.html b/ringcentral/http/client_test.html index 3bc75a7..9fc9c1f 100644 --- a/ringcentral/http/client_test.html +++ b/ringcentral/http/client_test.html @@ -314,6 +314,8 @@
Inherited Members
presence_subscription_mock
refresh_mock
subscription_mock
+
delete_mock_with_body
+
delete_mock_without_body
unittest.case.TestCase
diff --git a/ringcentral/http/multipart_builder_test.html b/ringcentral/http/multipart_builder_test.html index f6dabfe..34d8f2e 100644 --- a/ringcentral/http/multipart_builder_test.html +++ b/ringcentral/http/multipart_builder_test.html @@ -312,6 +312,8 @@
Inherited Members
presence_subscription_mock
refresh_mock
subscription_mock
+
delete_mock_with_body
+
delete_mock_without_body
unittest.case.TestCase
diff --git a/ringcentral/platform/platform.html b/ringcentral/platform/platform.html index e1380c9..6659911 100644 --- a/ringcentral/platform/platform.html +++ b/ringcentral/platform/platform.html @@ -443,8 +443,8 @@

309 request = self._client.create_request('PATCH', url, query_params=query_params, headers=headers, body=body) 310 return self.send_request(request, skip_auth_check=skip_auth_check) 311 -312 def delete(self, url, query_params=None, headers=None, skip_auth_check=False): -313 request = self._client.create_request('DELETE', url, query_params=query_params, headers=headers) +312 def delete(self, url, body=None, query_params=None, headers=None, skip_auth_check=False): +313 request = self._client.create_request('DELETE', url, query_params=query_params, headers=headers, body=body) 314 return self.send_request(request, skip_auth_check=skip_auth_check) 315 316 def _request_token(self, path='', body=None): @@ -877,8 +877,8 @@

310 request = self._client.create_request('PATCH', url, query_params=query_params, headers=headers, body=body) 311 return self.send_request(request, skip_auth_check=skip_auth_check) 312 -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) +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) 316 317 def _request_token(self, path='', body=None): @@ -1513,14 +1513,14 @@

def - delete(self, url, query_params=None, headers=None, skip_auth_check=False): + delete( self, url, body=None, query_params=None, headers=None, skip_auth_check=False):
-
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)
+            
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)
 
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 @@

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()

    @@ -286,7 +303,7 @@

    37 sdk.platform().login() 38 except Exception as e: 39 self.assertTrue( e ) - 40 + 40 41 def test_login_code_redirect(self, mock): 42 sdk = self.get_sdk(mock) 43 self.logout_mock(mock) @@ -390,6 +407,18 @@

    141 url = '/analytics/phone/foo' 142 act = sdk.platform().create_url(url, add_server=True) 143 self.assertEqual(exp, act) +144 +145 def test_delete_with_body(self,mock): +146 sdk = self.get_sdk(mock) +147 self.delete_mock_with_body(mock) +148 res = sdk.platform().delete(url='/restapi/v2/accounts/~/extensions',body={"keepAssetsInInventory": True,"records": [{"id": "123"}]}) +149 self.assertTrue(mock.called) +150 +151 def test_delete_without_body(self, mock): +152 sdk = self.get_sdk(mock) +153 self.delete_mock_without_body(mock) +154 sdk.platform().delete(url='/restapi/v2/accounts/~/extensions') +155 self.assertTrue(mock.called)

    @@ -754,6 +783,50 @@

    + +
    + +
    + + def + test_delete_with_body(self, mock): + + + +
    + +
    145    def test_delete_with_body(self,mock):
    +146        sdk = self.get_sdk(mock)
    +147        self.delete_mock_with_body(mock)
    +148        res = sdk.platform().delete(url='/restapi/v2/accounts/~/extensions',body={"keepAssetsInInventory": True,"records": [{"id": "123"}]})
    +149        self.assertTrue(mock.called)
    +
    + + + + +
    +
    + +
    + + def + test_delete_without_body(self, mock): + + + +
    + +
    151    def test_delete_without_body(self, mock):
    +152        sdk = self.get_sdk(mock)
    +153        self.delete_mock_without_body(mock)
    +154        sdk.platform().delete(url='/restapi/v2/accounts/~/extensions')
    +155        self.assertTrue(mock.called)
    +
    + + + +
    Inherited Members
    @@ -767,6 +840,8 @@
    Inherited Members
    presence_subscription_mock
    refresh_mock
    subscription_mock
    +
    delete_mock_with_body
    +
    delete_mock_without_body
    unittest.case.TestCase
    diff --git a/ringcentral/sdk_test.html b/ringcentral/sdk_test.html index d7076f4..4528db3 100644 --- a/ringcentral/sdk_test.html +++ b/ringcentral/sdk_test.html @@ -163,6 +163,8 @@
    Inherited Members
    presence_subscription_mock
    refresh_mock
    subscription_mock
    +
    delete_mock_with_body
    +
    delete_mock_without_body
    unittest.case.TestCase
    diff --git a/ringcentral/test/testcase.html b/ringcentral/test/testcase.html index 41284c2..eece988 100644 --- a/ringcentral/test/testcase.html +++ b/ringcentral/test/testcase.html @@ -57,6 +57,12 @@

    API Documentation

  • subscription_mock
  • +
  • + delete_mock_with_body +
  • +
  • + delete_mock_without_body +
  • @@ -188,6 +194,12 @@

    105 'status': 'Active', 106 'uri': 'https://platform.ringcentral.com/restapi/v1.0/subscription/foo-bar-baz' 107 }) +108 +109 def delete_mock_with_body(self,mock): +110 return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', {"keepAssetsInInventory": True,"records": [{"id": "123"}]}) +111 +112 def delete_mock_without_body(self,mock): +113 return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', body=None)

    @@ -299,6 +311,12 @@

    106 'status': 'Active', 107 'uri': 'https://platform.ringcentral.com/restapi/v1.0/subscription/foo-bar-baz' 108 }) +109 +110 def delete_mock_with_body(self,mock): +111 return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', {"keepAssetsInInventory": True,"records": [{"id": "123"}]}) +112 +113 def delete_mock_without_body(self,mock): +114 return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', body=None) @@ -564,6 +582,44 @@

    + +
    + +
    + + def + delete_mock_with_body(self, mock): + + + +
    + +
    110    def delete_mock_with_body(self,mock):
    +111        return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', {"keepAssetsInInventory": True,"records": [{"id": "123"}]})
    +
    + + + + +
    +
    + +
    + + def + delete_mock_without_body(self, mock): + + + +
    + +
    113    def delete_mock_without_body(self,mock):
    +114        return self.add(mock, 'DELETE', '/restapi/v2/accounts/~/extensions', body=None)
    +
    + + + +
    Inherited Members
    diff --git a/search.js b/search.js index ccb7cc6..1a76635 100644 --- a/search.js +++ b/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o

    \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.

    \n\n

    Parameters:\n s (dict): A dictionary containing the key-value pairs to be encoded.

    \n\n

    Returns:\n str: A URL-encoded string representing the input dictionary.

    \n\n

    Raises:\n Exception: If neither urllib.urlencode nor urllib.parse.urlencode is available.

    \n\n

    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.

    \n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.iterator": {"fullname": "ringcentral.core.iterator", "modulename": "ringcentral.core", "qualname": "iterator", "kind": "function", "doc": "

    Returns an iterator over key-value pairs of thing.

    \n\n

    If thing has an iteritems method, it is used; otherwise, thing.items() is iterated over.

    \n\n

    Parameters:\n thing: An iterable object.

    \n\n

    Returns:\n iterator: An iterator over the key-value pairs of thing.

    \n", "signature": "(thing):", "funcdef": "def"}, "ringcentral.core.base64encode": {"fullname": "ringcentral.core.base64encode", "modulename": "ringcentral.core", "qualname": "base64encode", "kind": "function", "doc": "

    Encodes the input string s into base64 format.

    \n\n

    Parameters:\n s (str): The string to be encoded.

    \n\n

    Returns:\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.

    \n\n

    Parameters:\n s (str): The decrypted string to be cleaned.

    \n\n

    Returns:\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\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"fullname": "ringcentral.http.api_exception_test.TestApiException.test_simple", "modulename": "ringcentral.http.api_exception_test", "qualname": "TestApiException.test_simple", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response": {"fullname": "ringcentral.http.api_response", "modulename": "ringcentral.http.api_response", "kind": "module", "doc": "

    \n"}, "ringcentral.http.api_response.ApiResponse": {"fullname": "ringcentral.http.api_response.ApiResponse", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse", "kind": "class", "doc": "

    \n"}, "ringcentral.http.api_response.ApiResponse.__init__": {"fullname": "ringcentral.http.api_response.ApiResponse.__init__", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.__init__", "kind": "function", "doc": "

    \n", "signature": "(request=None, response=None)"}, "ringcentral.http.api_response.ApiResponse.ok": {"fullname": "ringcentral.http.api_response.ApiResponse.ok", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.ok", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.raw": {"fullname": "ringcentral.http.api_response.ApiResponse.raw", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.raw", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.body": {"fullname": "ringcentral.http.api_response.ApiResponse.body", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.body", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.text": {"fullname": "ringcentral.http.api_response.ApiResponse.text", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.text", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.json_dict": {"fullname": "ringcentral.http.api_response.ApiResponse.json_dict", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.json_dict", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.json": {"fullname": "ringcentral.http.api_response.ApiResponse.json", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.json", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.multipart": {"fullname": "ringcentral.http.api_response.ApiResponse.multipart", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.multipart", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.error": {"fullname": "ringcentral.http.api_response.ApiResponse.error", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.error", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.request": {"fullname": "ringcentral.http.api_response.ApiResponse.request", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.request", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.response": {"fullname": "ringcentral.http.api_response.ApiResponse.response", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.response", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.create_response": {"fullname": "ringcentral.http.api_response.create_response", "modulename": "ringcentral.http.api_response", "qualname": "create_response", "kind": "function", "doc": "

    \n", "signature": "(payload, status):", "funcdef": "def"}, "ringcentral.http.api_response_test": {"fullname": "ringcentral.http.api_response_test", "modulename": "ringcentral.http.api_response_test", "kind": "module", "doc": "

    \n"}, "ringcentral.http.api_response_test.multipart_headers": {"fullname": "ringcentral.http.api_response_test.multipart_headers", "modulename": "ringcentral.http.api_response_test", "qualname": "multipart_headers", "kind": "variable", "doc": "

    \n", "default_value": "{'Content-Type': 'multipart/mixed; boundary=Boundary_1245_945802293_1394135045248'}"}, "ringcentral.http.api_response_test.TestApiResponse": {"fullname": "ringcentral.http.api_response_test.TestApiResponse", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart_with_error", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart_bad_response", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.create_response": {"fullname": "ringcentral.http.api_response_test.create_response", "modulename": "ringcentral.http.api_response_test", "qualname": "create_response", "kind": "function", "doc": "

    \n", "signature": "(body, status, headers=None):", "funcdef": "def"}, "ringcentral.http.client": {"fullname": "ringcentral.http.client", "modulename": "ringcentral.http.client", "kind": "module", "doc": "

    \n"}, "ringcentral.http.client.Client": {"fullname": "ringcentral.http.client.Client", "modulename": "ringcentral.http.client", "qualname": "Client", "kind": "class", "doc": "

    \n"}, "ringcentral.http.client.Client.send": {"fullname": "ringcentral.http.client.Client.send", "modulename": "ringcentral.http.client", "qualname": "Client.send", "kind": "function", "doc": "

    Send the HTTP request and handle the response.

    \n\n

    Args:\n request (obj): The HTTP request object.

    \n\n

    Returns:\n obj: The HTTP response object.

    \n\n

    Raises:\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\n

    Args:\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\n

    Returns:\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\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_with_query_string", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_with_query_string", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_url", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_json", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_json_default", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_alternative", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.json_object": {"fullname": "ringcentral.http.json_object", "modulename": "ringcentral.http.json_object", "kind": "module", "doc": "

    \n"}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"fullname": "ringcentral.http.json_object.PYTHON_KEYWORDS", "modulename": "ringcentral.http.json_object", "qualname": "PYTHON_KEYWORDS", "kind": "variable", "doc": "

    \n", "default_value": "('and', 'del', 'from', 'not', 'while', 'as', 'elif', 'global', 'or', 'with', 'assert', 'else', 'if', 'pass', 'yield', 'break', 'except', 'import', 'rint', 'class', 'exec', 'in', 'raise', 'continue', 'finally', 'is', 'return', 'def', 'for', 'lambda', 'try')"}, "ringcentral.http.json_object.JsonObject": {"fullname": "ringcentral.http.json_object.JsonObject", "modulename": "ringcentral.http.json_object", "qualname": "JsonObject", "kind": "class", "doc": "

    \n"}, "ringcentral.http.json_object.safe_name": {"fullname": "ringcentral.http.json_object.safe_name", "modulename": "ringcentral.http.json_object", "qualname": "safe_name", "kind": "function", "doc": "

    \n", "signature": "(n):", "funcdef": "def"}, "ringcentral.http.json_object.unfold": {"fullname": "ringcentral.http.json_object.unfold", "modulename": "ringcentral.http.json_object", "qualname": "unfold", "kind": "function", "doc": "

    \n", "signature": "(d):", "funcdef": "def"}, "ringcentral.http.multipart_builder": {"fullname": "ringcentral.http.multipart_builder", "modulename": "ringcentral.http.multipart_builder", "kind": "module", "doc": "

    \n"}, "ringcentral.http.multipart_builder.MultipartBuilder": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder", "kind": "class", "doc": "

    \n"}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.__init__", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.__init__", "kind": "function", "doc": "

    \n", "signature": "(platform)"}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.set_multipart_mixed", "kind": "function", "doc": "

    \n", "signature": "(self, multipart_mixed):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.set_body", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.set_body", "kind": "function", "doc": "

    \n", "signature": "(self, body):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.body", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.body", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.contents", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.contents", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.add", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.add", "kind": "function", "doc": "

    Possible attachment formats:

    \n\n
      \n
    1. Downloaded: ('filename.ext', urllib.urlopen('https://...').read(), 'image/png')
    2. \n
    3. Local file: ('report.xls', open('report.xls', 'rb'), 'application/vnd.ms-excel', {'Expires': '0'})
    4. \n
    5. Direct local file w/o meta: open('report.xls', 'rb')
    6. \n
    7. Plain text: ('report.csv', 'some,data,to,send')
    8. \n
    \n\n
    Parameters
    \n\n
      \n
    • attachment:
    • \n
    • name='attachment':
    • \n
    \n\n
    Returns
    \n", "signature": "(self, attachment, name='attachment'):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.request", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.request", "kind": "function", "doc": "

    \n", "signature": "(self, url, method='POST'):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test": {"fullname": "ringcentral.http.multipart_builder_test", "modulename": "ringcentral.http.multipart_builder_test", "kind": "module", "doc": "

    \n"}, "ringcentral.http.multipart_builder_test.MockPlatform": {"fullname": "ringcentral.http.multipart_builder_test.MockPlatform", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "MockPlatform", "kind": "class", "doc": "

    \n"}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"fullname": "ringcentral.http.multipart_builder_test.MockPlatform.create_url", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "MockPlatform.create_url", "kind": "function", "doc": "

    \n", "signature": "(self, url, add_server):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder.test_add", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder.test_multipart_mixed", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform": {"fullname": "ringcentral.platform", "modulename": "ringcentral.platform", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.auth": {"fullname": "ringcentral.platform.auth", "modulename": "ringcentral.platform.auth", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"fullname": "ringcentral.platform.auth.RELEASE_TIMEOUT", "modulename": "ringcentral.platform.auth", "qualname": "RELEASE_TIMEOUT", "kind": "variable", "doc": "

    \n", "default_value": "10"}, "ringcentral.platform.auth.Auth": {"fullname": "ringcentral.platform.auth.Auth", "modulename": "ringcentral.platform.auth", "qualname": "Auth", "kind": "class", "doc": "

    \n"}, "ringcentral.platform.auth.Auth.set_data": {"fullname": "ringcentral.platform.auth.Auth.set_data", "modulename": "ringcentral.platform.auth", "qualname": "Auth.set_data", "kind": "function", "doc": "

    \n", "signature": "(self, auth_data=None):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.data": {"fullname": "ringcentral.platform.auth.Auth.data", "modulename": "ringcentral.platform.auth", "qualname": "Auth.data", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.reset": {"fullname": "ringcentral.platform.auth.Auth.reset", "modulename": "ringcentral.platform.auth", "qualname": "Auth.reset", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.access_token": {"fullname": "ringcentral.platform.auth.Auth.access_token", "modulename": "ringcentral.platform.auth", "qualname": "Auth.access_token", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.refresh_token": {"fullname": "ringcentral.platform.auth.Auth.refresh_token", "modulename": "ringcentral.platform.auth", "qualname": "Auth.refresh_token", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.token_type": {"fullname": "ringcentral.platform.auth.Auth.token_type", "modulename": "ringcentral.platform.auth", "qualname": "Auth.token_type", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.access_token_valid": {"fullname": "ringcentral.platform.auth.Auth.access_token_valid", "modulename": "ringcentral.platform.auth", "qualname": "Auth.access_token_valid", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"fullname": "ringcentral.platform.auth.Auth.refresh_token_valid", "modulename": "ringcentral.platform.auth", "qualname": "Auth.refresh_token_valid", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.events": {"fullname": "ringcentral.platform.events", "modulename": "ringcentral.platform.events", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.events.Events": {"fullname": "ringcentral.platform.events.Events", "modulename": "ringcentral.platform.events", "qualname": "Events", "kind": "class", "doc": "

    Events class representing various event types.

    \n\n

    Attributes:\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\n

    Args:\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\n

    Returns:\n str: The complete URL.

    \n\n

    Note:\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'.

    \n", "signature": "(self, url, add_server=False, add_method=None, add_token=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.logged_in": {"fullname": "ringcentral.platform.platform.Platform.logged_in", "modulename": "ringcentral.platform.platform", "qualname": "Platform.logged_in", "kind": "function", "doc": "

    Checks if the user is currently logged in.

    \n\n

    Returns:\n bool: True if the user is logged in, False otherwise.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.login_url": {"fullname": "ringcentral.platform.platform.Platform.login_url", "modulename": "ringcentral.platform.platform", "qualname": "Platform.login_url", "kind": "function", "doc": "

    Generates the URL for initiating the login process.

    \n\n

    Args:\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\n

    Returns:\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\n

    Args:\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\n

    Returns:\n Response: The response object containing authentication data if successful.

    \n\n

    Raises:\n Exception: If the login attempt fails or invalid parameters are provided.

    \n\n

    Note:\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.

    \n", "signature": "(\tself,\tusername='',\textension='',\tpassword='',\tcode='',\tredirect_uri='',\tjwt='',\tverifier=''):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.refresh": {"fullname": "ringcentral.platform.platform.Platform.refresh", "modulename": "ringcentral.platform.platform", "qualname": "Platform.refresh", "kind": "function", "doc": "

    Refreshes the authentication tokens.

    \n\n

    Returns:\n Response: The response object containing refreshed authentication data if successful.

    \n\n

    Raises:\n Exception: If the refresh token has expired or if any error occurs during the refresh process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.logout": {"fullname": "ringcentral.platform.platform.Platform.logout", "modulename": "ringcentral.platform.platform", "qualname": "Platform.logout", "kind": "function", "doc": "

    Logs out the user by revoking the access token.

    \n\n

    Returns:\n Response: The response object containing logout confirmation if successful.

    \n\n

    Raises:\n Exception: If any error occurs during the logout process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.inflate_request": {"fullname": "ringcentral.platform.platform.Platform.inflate_request", "modulename": "ringcentral.platform.platform", "qualname": "Platform.inflate_request", "kind": "function", "doc": "

    Inflates the provided request object with necessary headers and URL modifications.

    \n\n

    Args:\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\n

    Note:\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.

    \n", "signature": "(self, request, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.send_request": {"fullname": "ringcentral.platform.platform.Platform.send_request", "modulename": "ringcentral.platform.platform", "qualname": "Platform.send_request", "kind": "function", "doc": "

    \n", "signature": "(self, request, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.get": {"fullname": "ringcentral.platform.platform.Platform.get", "modulename": "ringcentral.platform.platform", "qualname": "Platform.get", "kind": "function", "doc": "

    \n", "signature": "(self, url, query_params=None, headers=None, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.post": {"fullname": "ringcentral.platform.platform.Platform.post", "modulename": "ringcentral.platform.platform", "qualname": "Platform.post", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.put": {"fullname": "ringcentral.platform.platform.Platform.put", "modulename": "ringcentral.platform.platform", "qualname": "Platform.put", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.patch": {"fullname": "ringcentral.platform.platform.Platform.patch", "modulename": "ringcentral.platform.platform", "qualname": "Platform.patch", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.delete": {"fullname": "ringcentral.platform.platform.Platform.delete", "modulename": "ringcentral.platform.platform", "qualname": "Platform.delete", "kind": "function", "doc": "

    \n", "signature": "(self, url, query_params=None, headers=None, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform_test": {"fullname": "ringcentral.platform.platform_test", "modulename": "ringcentral.platform.platform_test", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.platform_test.TestPlatform": {"fullname": "ringcentral.platform.platform_test.TestPlatform", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_key", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_key", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_code", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_code", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_fail", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_fail", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_code_redirect", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_refresh_with_outdated_token", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_logged_in", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_logged_in", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_manual_refresh", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"fullname": "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.skip_test_automatic_refresh", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_logout", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_logout", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_api_url", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_api_url", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_api_url_custom_prefixes", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.sdk": {"fullname": "ringcentral.sdk", "modulename": "ringcentral.sdk", "kind": "module", "doc": "

    \n"}, "ringcentral.sdk.SDK": {"fullname": "ringcentral.sdk.SDK", "modulename": "ringcentral.sdk", "qualname": "SDK", "kind": "class", "doc": "

    \n"}, "ringcentral.sdk.SDK.__init__": {"fullname": "ringcentral.sdk.SDK.__init__", "modulename": "ringcentral.sdk", "qualname": "SDK.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tkey,\tsecret,\tserver,\tname='',\tversion='',\tredirect_uri=None,\tknown_prefixes=None)"}, "ringcentral.sdk.SDK.platform": {"fullname": "ringcentral.sdk.SDK.platform", "modulename": "ringcentral.sdk", "qualname": "SDK.platform", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk.SDK.create_web_socket_client": {"fullname": "ringcentral.sdk.SDK.create_web_socket_client", "modulename": "ringcentral.sdk", "qualname": "SDK.create_web_socket_client", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk.SDK.create_multipart_builder": {"fullname": "ringcentral.sdk.SDK.create_multipart_builder", "modulename": "ringcentral.sdk", "qualname": "SDK.create_multipart_builder", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk_test": {"fullname": "ringcentral.sdk_test", "modulename": "ringcentral.sdk_test", "kind": "module", "doc": "

    \n"}, "ringcentral.sdk_test.TestSDK": {"fullname": "ringcentral.sdk_test.TestSDK", "modulename": "ringcentral.sdk_test", "qualname": "TestSDK", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.sdk_test.TestSDK.test_instance": {"fullname": "ringcentral.sdk_test.TestSDK.test_instance", "modulename": "ringcentral.sdk_test", "qualname": "TestSDK.test_instance", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.test": {"fullname": "ringcentral.test", "modulename": "ringcentral.test", "kind": "module", "doc": "

    \n"}, "ringcentral.test.spy": {"fullname": "ringcentral.test.spy", "modulename": "ringcentral.test.spy", "kind": "module", "doc": "

    \n"}, "ringcentral.test.spy.Spy": {"fullname": "ringcentral.test.spy.Spy", "modulename": "ringcentral.test.spy", "qualname": "Spy", "kind": "class", "doc": "

    \n"}, "ringcentral.test.spy.Spy.args": {"fullname": "ringcentral.test.spy.Spy.args", "modulename": "ringcentral.test.spy", "qualname": "Spy.args", "kind": "variable", "doc": "

    \n"}, "ringcentral.test.testcase": {"fullname": "ringcentral.test.testcase", "modulename": "ringcentral.test.testcase", "kind": "module", "doc": "

    \n"}, "ringcentral.test.testcase.TestCase": {"fullname": "ringcentral.test.testcase.TestCase", "modulename": "ringcentral.test.testcase", "qualname": "TestCase", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "unittest.case.TestCase"}, "ringcentral.test.testcase.TestCase.__init__": {"fullname": "ringcentral.test.testcase.TestCase.__init__", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.__init__", "kind": "function", "doc": "

    Create 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\n

    Attributes:\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\n

    Returns:\n Any: Response object containing the result of the connection creation.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_web_socket_token", "kind": "function", "doc": "

    Retrieves a WebSocket token.

    \n\n

    Returns:\n dict: WebSocket token containing URI and access token.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Args:\n ws_uri (str): The WebSocket URI.\n ws_access_token (str): The access token for WebSocket authentication.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.recover_connection", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.send_message", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.send_message", "kind": "function", "doc": "

    Sends a message over the WebSocket connection.

    \n\n

    Args:\n message (Any): The message to be sent.

    \n\n

    Raises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.

    \n\n

    Note:\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.

    \n", "signature": "(self, message):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.create_subscription", "kind": "function", "doc": "

    Creates a subscription to WebSocket events.

    \n\n

    Args:\n events (list, optional): A list of events to subscribe to. Default is None.

    \n\n

    Raises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.

    \n\n

    Note:\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.

    \n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.update_subscription", "kind": "function", "doc": "

    Updates an existing WebSocket subscription with new events.

    \n\n

    Args:\n subscription : The WebSocket subscription to update.\n events (list, optional): A list of events to update the subscription with. Default is None.

    \n\n

    Returns:\n WebSocketSubscription: The updated WebSocket subscription.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Args:\n subscription : The WebSocket subscription to remove.

    \n\n

    Raises:\n Exception: If any error occurs during the removal process.

    \n\n

    Note:\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.

    \n\n

    Parameters:\n s (dict): A dictionary containing the key-value pairs to be encoded.

    \n\n

    Returns:\n str: A URL-encoded string representing the input dictionary.

    \n\n

    Raises:\n Exception: If neither urllib.urlencode nor urllib.parse.urlencode is available.

    \n\n

    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.

    \n", "signature": "(s):", "funcdef": "def"}, "ringcentral.core.iterator": {"fullname": "ringcentral.core.iterator", "modulename": "ringcentral.core", "qualname": "iterator", "kind": "function", "doc": "

    Returns an iterator over key-value pairs of thing.

    \n\n

    If thing has an iteritems method, it is used; otherwise, thing.items() is iterated over.

    \n\n

    Parameters:\n thing: An iterable object.

    \n\n

    Returns:\n iterator: An iterator over the key-value pairs of thing.

    \n", "signature": "(thing):", "funcdef": "def"}, "ringcentral.core.base64encode": {"fullname": "ringcentral.core.base64encode", "modulename": "ringcentral.core", "qualname": "base64encode", "kind": "function", "doc": "

    Encodes the input string s into base64 format.

    \n\n

    Parameters:\n s (str): The string to be encoded.

    \n\n

    Returns:\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.

    \n\n

    Parameters:\n s (str): The decrypted string to be cleaned.

    \n\n

    Returns:\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\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.api_exception_test.TestApiException.test_simple": {"fullname": "ringcentral.http.api_exception_test.TestApiException.test_simple", "modulename": "ringcentral.http.api_exception_test", "qualname": "TestApiException.test_simple", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response": {"fullname": "ringcentral.http.api_response", "modulename": "ringcentral.http.api_response", "kind": "module", "doc": "

    \n"}, "ringcentral.http.api_response.ApiResponse": {"fullname": "ringcentral.http.api_response.ApiResponse", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse", "kind": "class", "doc": "

    \n"}, "ringcentral.http.api_response.ApiResponse.__init__": {"fullname": "ringcentral.http.api_response.ApiResponse.__init__", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.__init__", "kind": "function", "doc": "

    \n", "signature": "(request=None, response=None)"}, "ringcentral.http.api_response.ApiResponse.ok": {"fullname": "ringcentral.http.api_response.ApiResponse.ok", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.ok", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.raw": {"fullname": "ringcentral.http.api_response.ApiResponse.raw", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.raw", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.body": {"fullname": "ringcentral.http.api_response.ApiResponse.body", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.body", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.text": {"fullname": "ringcentral.http.api_response.ApiResponse.text", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.text", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.json_dict": {"fullname": "ringcentral.http.api_response.ApiResponse.json_dict", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.json_dict", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.json": {"fullname": "ringcentral.http.api_response.ApiResponse.json", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.json", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.multipart": {"fullname": "ringcentral.http.api_response.ApiResponse.multipart", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.multipart", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.error": {"fullname": "ringcentral.http.api_response.ApiResponse.error", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.error", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.request": {"fullname": "ringcentral.http.api_response.ApiResponse.request", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.request", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.ApiResponse.response": {"fullname": "ringcentral.http.api_response.ApiResponse.response", "modulename": "ringcentral.http.api_response", "qualname": "ApiResponse.response", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response.create_response": {"fullname": "ringcentral.http.api_response.create_response", "modulename": "ringcentral.http.api_response", "qualname": "create_response", "kind": "function", "doc": "

    \n", "signature": "(payload, status):", "funcdef": "def"}, "ringcentral.http.api_response_test": {"fullname": "ringcentral.http.api_response_test", "modulename": "ringcentral.http.api_response_test", "kind": "module", "doc": "

    \n"}, "ringcentral.http.api_response_test.multipart_headers": {"fullname": "ringcentral.http.api_response_test.multipart_headers", "modulename": "ringcentral.http.api_response_test", "qualname": "multipart_headers", "kind": "variable", "doc": "

    \n", "default_value": "{'Content-Type': 'multipart/mixed; boundary=Boundary_1245_945802293_1394135045248'}"}, "ringcentral.http.api_response_test.TestApiResponse": {"fullname": "ringcentral.http.api_response_test.TestApiResponse", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart_with_error", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart_with_error", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response": {"fullname": "ringcentral.http.api_response_test.TestApiResponse.test_multipart_bad_response", "modulename": "ringcentral.http.api_response_test", "qualname": "TestApiResponse.test_multipart_bad_response", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.api_response_test.create_response": {"fullname": "ringcentral.http.api_response_test.create_response", "modulename": "ringcentral.http.api_response_test", "qualname": "create_response", "kind": "function", "doc": "

    \n", "signature": "(body, status, headers=None):", "funcdef": "def"}, "ringcentral.http.client": {"fullname": "ringcentral.http.client", "modulename": "ringcentral.http.client", "kind": "module", "doc": "

    \n"}, "ringcentral.http.client.Client": {"fullname": "ringcentral.http.client.Client", "modulename": "ringcentral.http.client", "qualname": "Client", "kind": "class", "doc": "

    \n"}, "ringcentral.http.client.Client.send": {"fullname": "ringcentral.http.client.Client.send", "modulename": "ringcentral.http.client", "qualname": "Client.send", "kind": "function", "doc": "

    Send the HTTP request and handle the response.

    \n\n

    Args:\n request (obj): The HTTP request object.

    \n\n

    Returns:\n obj: The HTTP response object.

    \n\n

    Raises:\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\n

    Args:\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\n

    Returns:\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\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.client_test.TestClient.test_create_request_with_query_string": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_with_query_string", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_with_query_string", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_url", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_url", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_json", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_json_default", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_json_default", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative": {"fullname": "ringcentral.http.client_test.TestClient.test_create_request_encode_body_alternative", "modulename": "ringcentral.http.client_test", "qualname": "TestClient.test_create_request_encode_body_alternative", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.json_object": {"fullname": "ringcentral.http.json_object", "modulename": "ringcentral.http.json_object", "kind": "module", "doc": "

    \n"}, "ringcentral.http.json_object.PYTHON_KEYWORDS": {"fullname": "ringcentral.http.json_object.PYTHON_KEYWORDS", "modulename": "ringcentral.http.json_object", "qualname": "PYTHON_KEYWORDS", "kind": "variable", "doc": "

    \n", "default_value": "('and', 'del', 'from', 'not', 'while', 'as', 'elif', 'global', 'or', 'with', 'assert', 'else', 'if', 'pass', 'yield', 'break', 'except', 'import', 'rint', 'class', 'exec', 'in', 'raise', 'continue', 'finally', 'is', 'return', 'def', 'for', 'lambda', 'try')"}, "ringcentral.http.json_object.JsonObject": {"fullname": "ringcentral.http.json_object.JsonObject", "modulename": "ringcentral.http.json_object", "qualname": "JsonObject", "kind": "class", "doc": "

    \n"}, "ringcentral.http.json_object.safe_name": {"fullname": "ringcentral.http.json_object.safe_name", "modulename": "ringcentral.http.json_object", "qualname": "safe_name", "kind": "function", "doc": "

    \n", "signature": "(n):", "funcdef": "def"}, "ringcentral.http.json_object.unfold": {"fullname": "ringcentral.http.json_object.unfold", "modulename": "ringcentral.http.json_object", "qualname": "unfold", "kind": "function", "doc": "

    \n", "signature": "(d):", "funcdef": "def"}, "ringcentral.http.multipart_builder": {"fullname": "ringcentral.http.multipart_builder", "modulename": "ringcentral.http.multipart_builder", "kind": "module", "doc": "

    \n"}, "ringcentral.http.multipart_builder.MultipartBuilder": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder", "kind": "class", "doc": "

    \n"}, "ringcentral.http.multipart_builder.MultipartBuilder.__init__": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.__init__", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.__init__", "kind": "function", "doc": "

    \n", "signature": "(platform)"}, "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.set_multipart_mixed", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.set_multipart_mixed", "kind": "function", "doc": "

    \n", "signature": "(self, multipart_mixed):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.set_body": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.set_body", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.set_body", "kind": "function", "doc": "

    \n", "signature": "(self, body):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.body": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.body", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.body", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.contents": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.contents", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.contents", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.add": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.add", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.add", "kind": "function", "doc": "

    Possible attachment formats:

    \n\n
      \n
    1. Downloaded: ('filename.ext', urllib.urlopen('https://...').read(), 'image/png')
    2. \n
    3. Local file: ('report.xls', open('report.xls', 'rb'), 'application/vnd.ms-excel', {'Expires': '0'})
    4. \n
    5. Direct local file w/o meta: open('report.xls', 'rb')
    6. \n
    7. Plain text: ('report.csv', 'some,data,to,send')
    8. \n
    \n\n
    Parameters
    \n\n
      \n
    • attachment:
    • \n
    • name='attachment':
    • \n
    \n\n
    Returns
    \n", "signature": "(self, attachment, name='attachment'):", "funcdef": "def"}, "ringcentral.http.multipart_builder.MultipartBuilder.request": {"fullname": "ringcentral.http.multipart_builder.MultipartBuilder.request", "modulename": "ringcentral.http.multipart_builder", "qualname": "MultipartBuilder.request", "kind": "function", "doc": "

    \n", "signature": "(self, url, method='POST'):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test": {"fullname": "ringcentral.http.multipart_builder_test", "modulename": "ringcentral.http.multipart_builder_test", "kind": "module", "doc": "

    \n"}, "ringcentral.http.multipart_builder_test.MockPlatform": {"fullname": "ringcentral.http.multipart_builder_test.MockPlatform", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "MockPlatform", "kind": "class", "doc": "

    \n"}, "ringcentral.http.multipart_builder_test.MockPlatform.create_url": {"fullname": "ringcentral.http.multipart_builder_test.MockPlatform.create_url", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "MockPlatform.create_url", "kind": "function", "doc": "

    \n", "signature": "(self, url, add_server):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_add", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder.test_add", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed": {"fullname": "ringcentral.http.multipart_builder_test.TestMultipartBuilder.test_multipart_mixed", "modulename": "ringcentral.http.multipart_builder_test", "qualname": "TestMultipartBuilder.test_multipart_mixed", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform": {"fullname": "ringcentral.platform", "modulename": "ringcentral.platform", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.auth": {"fullname": "ringcentral.platform.auth", "modulename": "ringcentral.platform.auth", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.auth.RELEASE_TIMEOUT": {"fullname": "ringcentral.platform.auth.RELEASE_TIMEOUT", "modulename": "ringcentral.platform.auth", "qualname": "RELEASE_TIMEOUT", "kind": "variable", "doc": "

    \n", "default_value": "10"}, "ringcentral.platform.auth.Auth": {"fullname": "ringcentral.platform.auth.Auth", "modulename": "ringcentral.platform.auth", "qualname": "Auth", "kind": "class", "doc": "

    \n"}, "ringcentral.platform.auth.Auth.set_data": {"fullname": "ringcentral.platform.auth.Auth.set_data", "modulename": "ringcentral.platform.auth", "qualname": "Auth.set_data", "kind": "function", "doc": "

    \n", "signature": "(self, auth_data=None):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.data": {"fullname": "ringcentral.platform.auth.Auth.data", "modulename": "ringcentral.platform.auth", "qualname": "Auth.data", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.reset": {"fullname": "ringcentral.platform.auth.Auth.reset", "modulename": "ringcentral.platform.auth", "qualname": "Auth.reset", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.access_token": {"fullname": "ringcentral.platform.auth.Auth.access_token", "modulename": "ringcentral.platform.auth", "qualname": "Auth.access_token", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.refresh_token": {"fullname": "ringcentral.platform.auth.Auth.refresh_token", "modulename": "ringcentral.platform.auth", "qualname": "Auth.refresh_token", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.token_type": {"fullname": "ringcentral.platform.auth.Auth.token_type", "modulename": "ringcentral.platform.auth", "qualname": "Auth.token_type", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.access_token_valid": {"fullname": "ringcentral.platform.auth.Auth.access_token_valid", "modulename": "ringcentral.platform.auth", "qualname": "Auth.access_token_valid", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.auth.Auth.refresh_token_valid": {"fullname": "ringcentral.platform.auth.Auth.refresh_token_valid", "modulename": "ringcentral.platform.auth", "qualname": "Auth.refresh_token_valid", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.events": {"fullname": "ringcentral.platform.events", "modulename": "ringcentral.platform.events", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.events.Events": {"fullname": "ringcentral.platform.events.Events", "modulename": "ringcentral.platform.events", "qualname": "Events", "kind": "class", "doc": "

    Events class representing various event types.

    \n\n

    Attributes:\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\n

    Args:\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\n

    Returns:\n str: The complete URL.

    \n\n

    Note:\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'.

    \n", "signature": "(self, url, add_server=False, add_method=None, add_token=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.logged_in": {"fullname": "ringcentral.platform.platform.Platform.logged_in", "modulename": "ringcentral.platform.platform", "qualname": "Platform.logged_in", "kind": "function", "doc": "

    Checks if the user is currently logged in.

    \n\n

    Returns:\n bool: True if the user is logged in, False otherwise.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.login_url": {"fullname": "ringcentral.platform.platform.Platform.login_url", "modulename": "ringcentral.platform.platform", "qualname": "Platform.login_url", "kind": "function", "doc": "

    Generates the URL for initiating the login process.

    \n\n

    Args:\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\n

    Returns:\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\n

    Args:\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\n

    Returns:\n Response: The response object containing authentication data if successful.

    \n\n

    Raises:\n Exception: If the login attempt fails or invalid parameters are provided.

    \n\n

    Note:\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.

    \n", "signature": "(\tself,\tusername='',\textension='',\tpassword='',\tcode='',\tredirect_uri='',\tjwt='',\tverifier=''):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.refresh": {"fullname": "ringcentral.platform.platform.Platform.refresh", "modulename": "ringcentral.platform.platform", "qualname": "Platform.refresh", "kind": "function", "doc": "

    Refreshes the authentication tokens.

    \n\n

    Returns:\n Response: The response object containing refreshed authentication data if successful.

    \n\n

    Raises:\n Exception: If the refresh token has expired or if any error occurs during the refresh process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.logout": {"fullname": "ringcentral.platform.platform.Platform.logout", "modulename": "ringcentral.platform.platform", "qualname": "Platform.logout", "kind": "function", "doc": "

    Logs out the user by revoking the access token.

    \n\n

    Returns:\n Response: The response object containing logout confirmation if successful.

    \n\n

    Raises:\n Exception: If any error occurs during the logout process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.inflate_request": {"fullname": "ringcentral.platform.platform.Platform.inflate_request", "modulename": "ringcentral.platform.platform", "qualname": "Platform.inflate_request", "kind": "function", "doc": "

    Inflates the provided request object with necessary headers and URL modifications.

    \n\n

    Args:\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\n

    Note:\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.

    \n", "signature": "(self, request, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.send_request": {"fullname": "ringcentral.platform.platform.Platform.send_request", "modulename": "ringcentral.platform.platform", "qualname": "Platform.send_request", "kind": "function", "doc": "

    \n", "signature": "(self, request, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.get": {"fullname": "ringcentral.platform.platform.Platform.get", "modulename": "ringcentral.platform.platform", "qualname": "Platform.get", "kind": "function", "doc": "

    \n", "signature": "(self, url, query_params=None, headers=None, skip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.post": {"fullname": "ringcentral.platform.platform.Platform.post", "modulename": "ringcentral.platform.platform", "qualname": "Platform.post", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.put": {"fullname": "ringcentral.platform.platform.Platform.put", "modulename": "ringcentral.platform.platform", "qualname": "Platform.put", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.patch": {"fullname": "ringcentral.platform.platform.Platform.patch", "modulename": "ringcentral.platform.platform", "qualname": "Platform.patch", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform.Platform.delete": {"fullname": "ringcentral.platform.platform.Platform.delete", "modulename": "ringcentral.platform.platform", "qualname": "Platform.delete", "kind": "function", "doc": "

    \n", "signature": "(\tself,\turl,\tbody=None,\tquery_params=None,\theaders=None,\tskip_auth_check=False):", "funcdef": "def"}, "ringcentral.platform.platform_test": {"fullname": "ringcentral.platform.platform_test", "modulename": "ringcentral.platform.platform_test", "kind": "module", "doc": "

    \n"}, "ringcentral.platform.platform_test.TestPlatform": {"fullname": "ringcentral.platform.platform_test.TestPlatform", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.platform.platform_test.TestPlatform.test_key": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_key", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_key", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_code": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_code", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_code", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_fail": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_fail", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_fail", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_login_code_redirect", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_login_code_redirect", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_refresh_with_outdated_token", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_refresh_with_outdated_token", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_logged_in": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_logged_in", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_logged_in", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_manual_refresh", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_manual_refresh", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh": {"fullname": "ringcentral.platform.platform_test.TestPlatform.skip_test_automatic_refresh", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.skip_test_automatic_refresh", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_logout": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_logout", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_logout", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_api_url": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_api_url", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_api_url", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_api_url_custom_prefixes", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_api_url_custom_prefixes", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_delete_with_body", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_delete_with_body", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body": {"fullname": "ringcentral.platform.platform_test.TestPlatform.test_delete_without_body", "modulename": "ringcentral.platform.platform_test", "qualname": "TestPlatform.test_delete_without_body", "kind": "function", "doc": "

    \n", "signature": "(self, mock):", "funcdef": "def"}, "ringcentral.sdk": {"fullname": "ringcentral.sdk", "modulename": "ringcentral.sdk", "kind": "module", "doc": "

    \n"}, "ringcentral.sdk.SDK": {"fullname": "ringcentral.sdk.SDK", "modulename": "ringcentral.sdk", "qualname": "SDK", "kind": "class", "doc": "

    \n"}, "ringcentral.sdk.SDK.__init__": {"fullname": "ringcentral.sdk.SDK.__init__", "modulename": "ringcentral.sdk", "qualname": "SDK.__init__", "kind": "function", "doc": "

    \n", "signature": "(\tkey,\tsecret,\tserver,\tname='',\tversion='',\tredirect_uri=None,\tknown_prefixes=None)"}, "ringcentral.sdk.SDK.platform": {"fullname": "ringcentral.sdk.SDK.platform", "modulename": "ringcentral.sdk", "qualname": "SDK.platform", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk.SDK.create_web_socket_client": {"fullname": "ringcentral.sdk.SDK.create_web_socket_client", "modulename": "ringcentral.sdk", "qualname": "SDK.create_web_socket_client", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk.SDK.create_multipart_builder": {"fullname": "ringcentral.sdk.SDK.create_multipart_builder", "modulename": "ringcentral.sdk", "qualname": "SDK.create_multipart_builder", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.sdk_test": {"fullname": "ringcentral.sdk_test", "modulename": "ringcentral.sdk_test", "kind": "module", "doc": "

    \n"}, "ringcentral.sdk_test.TestSDK": {"fullname": "ringcentral.sdk_test.TestSDK", "modulename": "ringcentral.sdk_test", "qualname": "TestSDK", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "ringcentral.test.testcase.TestCase"}, "ringcentral.sdk_test.TestSDK.test_instance": {"fullname": "ringcentral.sdk_test.TestSDK.test_instance", "modulename": "ringcentral.sdk_test", "qualname": "TestSDK.test_instance", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "def"}, "ringcentral.test": {"fullname": "ringcentral.test", "modulename": "ringcentral.test", "kind": "module", "doc": "

    \n"}, "ringcentral.test.spy": {"fullname": "ringcentral.test.spy", "modulename": "ringcentral.test.spy", "kind": "module", "doc": "

    \n"}, "ringcentral.test.spy.Spy": {"fullname": "ringcentral.test.spy.Spy", "modulename": "ringcentral.test.spy", "qualname": "Spy", "kind": "class", "doc": "

    \n"}, "ringcentral.test.spy.Spy.args": {"fullname": "ringcentral.test.spy.Spy.args", "modulename": "ringcentral.test.spy", "qualname": "Spy.args", "kind": "variable", "doc": "

    \n"}, "ringcentral.test.testcase": {"fullname": "ringcentral.test.testcase", "modulename": "ringcentral.test.testcase", "kind": "module", "doc": "

    \n"}, "ringcentral.test.testcase.TestCase": {"fullname": "ringcentral.test.testcase.TestCase", "modulename": "ringcentral.test.testcase", "qualname": "TestCase", "kind": "class", "doc": "

    A class whose instances are single test cases.

    \n\n

    By default, the test code itself should be placed in a method named\n'runTest'.

    \n\n

    If 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\n

    Test 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\n

    If 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\n

    When subclassing TestCase, you can set these attributes:

    \n\n
      \n
    • failureException: determines which exception will be raised when\nthe instance's assertion methods fail; test methods raising this\nexception will be deemed to have 'failed' rather than 'errored'.
    • \n
    • longMessage: determines whether long messages (including repr of\nobjects used in assert methods) will be printed on failure in addition\nto any explicit message passed.
    • \n
    • maxDiff: sets the maximum length of a diff in failure messages\nby assert methods using difflib. It is looked up as an instance\nattribute so can be configured by individual tests if required.
    • \n
    \n", "bases": "unittest.case.TestCase"}, "ringcentral.test.testcase.TestCase.__init__": {"fullname": "ringcentral.test.testcase.TestCase.__init__", "modulename": "ringcentral.test.testcase", "qualname": "TestCase.__init__", "kind": "function", "doc": "

    Create 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\n

    Attributes:\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\n

    Returns:\n Any: Response object containing the result of the connection creation.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.get_web_socket_token", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.get_web_socket_token", "kind": "function", "doc": "

    Retrieves a WebSocket token.

    \n\n

    Returns:\n dict: WebSocket token containing URI and access token.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Args:\n ws_uri (str): The WebSocket URI.\n ws_access_token (str): The access token for WebSocket authentication.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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.

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.recover_connection", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.recover_connection", "kind": "function", "doc": "

    \n", "signature": "(self):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.send_message": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.send_message", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.send_message", "kind": "function", "doc": "

    Sends a message over the WebSocket connection.

    \n\n

    Args:\n message (Any): The message to be sent.

    \n\n

    Raises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.

    \n\n

    Note:\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.

    \n", "signature": "(self, message):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.create_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.create_subscription", "kind": "function", "doc": "

    Creates a subscription to WebSocket events.

    \n\n

    Args:\n events (list, optional): A list of events to subscribe to. Default is None.

    \n\n

    Raises:\n Exception: If any error occurs during the process or if the connection is not ready after multiple attempts.

    \n\n

    Note:\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.

    \n", "signature": "(self, events=None):", "funcdef": "async def"}, "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription": {"fullname": "ringcentral.websocket.web_socket_client.WebSocketClient.update_subscription", "modulename": "ringcentral.websocket.web_socket_client", "qualname": "WebSocketClient.update_subscription", "kind": "function", "doc": "

    Updates an existing WebSocket subscription with new events.

    \n\n

    Args:\n subscription : The WebSocket subscription to update.\n events (list, optional): A list of events to update the subscription with. Default is None.

    \n\n

    Returns:\n WebSocketSubscription: The updated WebSocket subscription.

    \n\n

    Raises:\n Exception: If any error occurs during the process.

    \n\n

    Note:\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\n

    Args:\n subscription : The WebSocket subscription to remove.

    \n\n

    Raises:\n Exception: If any error occurs during the removal process.

    \n\n

    Note:\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.