@@ -20,12 +20,12 @@ def __init__(self, api_key=None):
2020 def send_bulk (self , app_id , event , ** kwargs ):
2121 kwargs ['_return_http_data_only' ] = True
2222 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 )
2424 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 )
2626 return data
2727
28- def send_bulk_with_http_info (self , app_id , event , ** kwargs ):
28+ def __send_bulk_with_http_info (self , app_id , event , ** kwargs ):
2929
3030 all_params = ['app_id' , 'event' , 'idempotency_key' ]
3131 all_params .append ('async_req' )
@@ -100,12 +100,12 @@ def send(self, app_id, event, **kwargs):
100100
101101 kwargs ['_return_http_data_only' ] = True
102102 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 )
104104 else :
105- (data ) = self .send_with_http_info (app_id , event , ** kwargs )
105+ (data ) = self .__send_with_http_info (app_id , event , ** kwargs )
106106 return data
107107
108- def send_with_http_info (self , app_id , event , ** kwargs ):
108+ def __send_with_http_info (self , app_id , event , ** kwargs ):
109109
110110 all_params = ['app_id' , 'event' , 'idempotency_key' ]
111111 all_params .append ('async_req' )
0 commit comments