@@ -20,12 +20,12 @@ def __init__(self, api_key=None):
20
20
def send_bulk (self , app_id , event , ** kwargs ):
21
21
kwargs ['_return_http_data_only' ] = True
22
22
if kwargs .get ('async_req' ):
23
- return self .send_bulk_with_http_info (app_id , event , ** kwargs )
23
+ return self .__send_bulk_with_http_info (app_id , event , ** kwargs )
24
24
else :
25
- (data ) = self .send_bulk_with_http_info (app_id , event , ** kwargs )
25
+ (data ) = self .__send_bulk_with_http_info (app_id , event , ** kwargs )
26
26
return data
27
27
28
- def send_bulk_with_http_info (self , app_id , event , ** kwargs ):
28
+ def __send_bulk_with_http_info (self , app_id , event , ** kwargs ):
29
29
30
30
all_params = ['app_id' , 'event' , 'idempotency_key' ]
31
31
all_params .append ('async_req' )
@@ -100,12 +100,12 @@ def send(self, app_id, event, **kwargs):
100
100
101
101
kwargs ['_return_http_data_only' ] = True
102
102
if kwargs .get ('async_req' ):
103
- return self .send_with_http_info (app_id , event , ** kwargs )
103
+ return self .__send_with_http_info (app_id , event , ** kwargs )
104
104
else :
105
- (data ) = self .send_with_http_info (app_id , event , ** kwargs )
105
+ (data ) = self .__send_with_http_info (app_id , event , ** kwargs )
106
106
return data
107
107
108
- def send_with_http_info (self , app_id , event , ** kwargs ):
108
+ def __send_with_http_info (self , app_id , event , ** kwargs ):
109
109
110
110
all_params = ['app_id' , 'event' , 'idempotency_key' ]
111
111
all_params .append ('async_req' )
0 commit comments