| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/clicksend_client/api/ |
Upload File : |
# coding: utf-8
"""
ClickSend v3 API
This is an official SDK for [ClickSend](https://clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](https://dashboard.clicksend.com/#/signup/step1/)..* # noqa: E501
OpenAPI spec version: 3.1
Contact: support@clicksend.com
Generated by: https://github.com/clicksend-api/clicksend-codegen.git
"""
from __future__ import absolute_import
import re # noqa: F401
# python 2 and python 3 compatibility library
import six
from clicksend_client.api_client import ApiClient
class AccountRechargeApi(object):
"""NOTE: This class is auto generated by the clicksend code generator program.
Do not edit the class manually.
Ref: https://github.com/clicksend-api/clicksend-codegen
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient()
self.api_client = api_client
def recharge_credit_card_get(self, **kwargs): # noqa: E501
"""Get Credit Card info # noqa: E501
Get Credit Card info # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_credit_card_get(async_req=True)
>>> result = thread.get()
:param async_req bool
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_credit_card_get_with_http_info(**kwargs) # noqa: E501
else:
(data) = self.recharge_credit_card_get_with_http_info(**kwargs) # noqa: E501
return data
def recharge_credit_card_get_with_http_info(self, **kwargs): # noqa: E501
"""Get Credit Card info # noqa: E501
Get Credit Card info # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_credit_card_get_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = [] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_credit_card_get" % key
)
params[key] = val
del params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/credit-card', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)
def recharge_credit_card_put(self, credit_card, **kwargs): # noqa: E501
"""Update credit card info # noqa: E501
Update credit card info # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_credit_card_put(credit_card, async_req=True)
>>> result = thread.get()
:param async_req bool
:param CreditCard credit_card: CreditCard model (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_credit_card_put_with_http_info(credit_card, **kwargs) # noqa: E501
else:
(data) = self.recharge_credit_card_put_with_http_info(credit_card, **kwargs) # noqa: E501
return data
def recharge_credit_card_put_with_http_info(self, credit_card, **kwargs): # noqa: E501
"""Update credit card info # noqa: E501
Update credit card info # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_credit_card_put_with_http_info(credit_card, async_req=True)
>>> result = thread.get()
:param async_req bool
:param CreditCard credit_card: CreditCard model (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['credit_card'] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_credit_card_put" % key
)
params[key] = val
del params['kwargs']
# verify the required parameter 'credit_card' is set
if self.api_client.client_side_validation and ('credit_card' not in params or
params['credit_card'] is None): # noqa: E501
raise ValueError("Missing the required parameter `credit_card` when calling `recharge_credit_card_put`") # noqa: E501
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
if 'credit_card' in params:
body_params = params['credit_card']
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/credit-card', 'PUT',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)
def recharge_packages_get(self, **kwargs): # noqa: E501
"""Get list of all packages # noqa: E501
Get list of all packages # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_packages_get(async_req=True)
>>> result = thread.get()
:param async_req bool
:param str country: Country code
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_packages_get_with_http_info(**kwargs) # noqa: E501
else:
(data) = self.recharge_packages_get_with_http_info(**kwargs) # noqa: E501
return data
def recharge_packages_get_with_http_info(self, **kwargs): # noqa: E501
"""Get list of all packages # noqa: E501
Get list of all packages # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_packages_get_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool
:param str country: Country code
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['country'] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_packages_get" % key
)
params[key] = val
del params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
if 'country' in params:
query_params.append(('country', params['country'])) # noqa: E501
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/packages', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)
def recharge_purchase_by_package_id_put(self, package_id, **kwargs): # noqa: E501
"""Purchase a package # noqa: E501
Purchase a package # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_purchase_by_package_id_put(package_id, async_req=True)
>>> result = thread.get()
:param async_req bool
:param int package_id: ID of package to purchase (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_purchase_by_package_id_put_with_http_info(package_id, **kwargs) # noqa: E501
else:
(data) = self.recharge_purchase_by_package_id_put_with_http_info(package_id, **kwargs) # noqa: E501
return data
def recharge_purchase_by_package_id_put_with_http_info(self, package_id, **kwargs): # noqa: E501
"""Purchase a package # noqa: E501
Purchase a package # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_purchase_by_package_id_put_with_http_info(package_id, async_req=True)
>>> result = thread.get()
:param async_req bool
:param int package_id: ID of package to purchase (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['package_id'] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_purchase_by_package_id_put" % key
)
params[key] = val
del params['kwargs']
# verify the required parameter 'package_id' is set
if self.api_client.client_side_validation and ('package_id' not in params or
params['package_id'] is None): # noqa: E501
raise ValueError("Missing the required parameter `package_id` when calling `recharge_purchase_by_package_id_put`") # noqa: E501
collection_formats = {}
path_params = {}
if 'package_id' in params:
path_params['package_id'] = params['package_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/purchase/{package_id}', 'PUT',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)
def recharge_transactions_by_transaction_id_get(self, transaction_id, **kwargs): # noqa: E501
"""Get specific Transaction # noqa: E501
Get specific Transaction # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_transactions_by_transaction_id_get(transaction_id, async_req=True)
>>> result = thread.get()
:param async_req bool
:param str transaction_id: ID of transaction to retrieve (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_transactions_by_transaction_id_get_with_http_info(transaction_id, **kwargs) # noqa: E501
else:
(data) = self.recharge_transactions_by_transaction_id_get_with_http_info(transaction_id, **kwargs) # noqa: E501
return data
def recharge_transactions_by_transaction_id_get_with_http_info(self, transaction_id, **kwargs): # noqa: E501
"""Get specific Transaction # noqa: E501
Get specific Transaction # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_transactions_by_transaction_id_get_with_http_info(transaction_id, async_req=True)
>>> result = thread.get()
:param async_req bool
:param str transaction_id: ID of transaction to retrieve (required)
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['transaction_id'] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_transactions_by_transaction_id_get" % key
)
params[key] = val
del params['kwargs']
# verify the required parameter 'transaction_id' is set
if self.api_client.client_side_validation and ('transaction_id' not in params or
params['transaction_id'] is None): # noqa: E501
raise ValueError("Missing the required parameter `transaction_id` when calling `recharge_transactions_by_transaction_id_get`") # noqa: E501
collection_formats = {}
path_params = {}
if 'transaction_id' in params:
path_params['transaction_id'] = params['transaction_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/transactions/{transaction_id}', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)
def recharge_transactions_get(self, **kwargs): # noqa: E501
"""Purchase a package # noqa: E501
Get all transactions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_transactions_get(async_req=True)
>>> result = thread.get()
:param async_req bool
:param int page: Page number
:param int limit: Number of records per page
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async_req'):
return self.recharge_transactions_get_with_http_info(**kwargs) # noqa: E501
else:
(data) = self.recharge_transactions_get_with_http_info(**kwargs) # noqa: E501
return data
def recharge_transactions_get_with_http_info(self, **kwargs): # noqa: E501
"""Purchase a package # noqa: E501
Get all transactions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.recharge_transactions_get_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool
:param int page: Page number
:param int limit: Number of records per page
:return: str
If the method is called asynchronously,
returns the request thread.
"""
all_params = ['page', 'limit'] # noqa: E501
all_params.append('async_req')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
params = locals()
for key, val in six.iteritems(params['kwargs']):
if key not in all_params:
raise TypeError(
"Got an unexpected keyword argument '%s'"
" to method recharge_transactions_get" % key
)
params[key] = val
del params['kwargs']
if self.api_client.client_side_validation and ('page' in params and params['page'] < 1): # noqa: E501
raise ValueError("Invalid value for parameter `page` when calling `recharge_transactions_get`, must be a value greater than or equal to `1`") # noqa: E501
if self.api_client.client_side_validation and ('limit' in params and params['limit'] < 1): # noqa: E501
raise ValueError("Invalid value for parameter `limit` when calling `recharge_transactions_get`, must be a value greater than or equal to `1`") # noqa: E501
collection_formats = {}
path_params = {}
query_params = []
if 'page' in params:
query_params.append(('page', params['page'])) # noqa: E501
if 'limit' in params:
query_params.append(('limit', params['limit'])) # noqa: E501
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['BasicAuth'] # noqa: E501
return self.api_client.call_api(
'/recharge/transactions', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
collection_formats=collection_formats)