File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
livechat/customer/rtm/api Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
class CustomerRtmV33 :
11
11
''' Customer RTM API client class in version 3.3. '''
12
- def __init__ (self , base_url : str , license_id : str ):
12
+ def __init__ (self , license_id : str , base_url : str ):
13
13
if isinstance (license_id , (int , str )):
14
14
self .ws = WebsocketClient (
15
15
url =
Original file line number Diff line number Diff line change 9
9
10
10
class CustomerRtmV34 :
11
11
''' Customer RTM API client class in version 3.4. '''
12
- def __init__ (self , base_url : str , organization_id : str ):
12
+ def __init__ (self , organization_id : str , base_url : str ):
13
13
if isinstance (organization_id , str ):
14
14
self .ws = WebsocketClient (
15
15
url =
Original file line number Diff line number Diff line change 9
9
10
10
class CustomerRtmV35 :
11
11
''' Customer RTM API client class in version 3.5. '''
12
- def __init__ (self , base_url : str , organization_id : str ):
12
+ def __init__ (self , organization_id : str , base_url : str ):
13
13
if isinstance (organization_id , str ):
14
14
self .ws = WebsocketClient (
15
15
url =
You can’t perform that action at this time.
0 commit comments