Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the official Finix Python library

Our team is hard at work revamping our SDKs to bring you exciting new features and optimizations.

While we fine-tune and make changes, we've temporarily paused releasing updates since 09/20/222. If you have any questions, feel free to reach out to the [Finix Support Team](mailto:support@finixpayments.com).
While we fine-tune and make changes, we've temporarily paused releasing updates since 09/20/22. If you have any questions, feel free to reach out to the [Finix Support Team](mailto:support@finixpayments.com).

### Prerequisites
- Python>=3.6
Expand Down
233 changes: 215 additions & 18 deletions finix/api/authorizations_api.py

Large diffs are not rendered by default.

32 changes: 22 additions & 10 deletions finix/api/balance_transfers_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def __init__(self, api_client=None):
},
params_map={
'all': [
'accept',
'create_balance_transfer_request',
],
'required': [],
Expand All @@ -91,23 +92,27 @@ def __init__(self, api_client=None):
'allowed_values': {
},
'openapi_types': {
'accept':
(str,),
'create_balance_transfer_request':
(CreateBalanceTransferRequest,),
},
'attribute_map': {
'accept': 'Accept',
},
'location_map': {
'accept': 'header',
'create_balance_transfer_request': 'body',
},
'collection_format_map': {
}
},
headers_map={
'accept': [
'application/hal+json'
'application/json'
],
'content_type': [
'application/hal+json'
'application/json'
]
},
api_client=api_client
Expand All @@ -126,6 +131,7 @@ def __init__(self, api_client=None):
params_map={
'all': [
'balance_transfers_id',
'accept',
],
'required': [
'balance_transfers_id',
Expand All @@ -145,19 +151,23 @@ def __init__(self, api_client=None):
'openapi_types': {
'balance_transfers_id':
(str,),
'accept':
(str,),
},
'attribute_map': {
'balance_transfers_id': 'balance_transfers_id',
'accept': 'Accept',
},
'location_map': {
'balance_transfers_id': 'path',
'accept': 'header',
},
'collection_format_map': {
}
},
headers_map={
'accept': [
'application/hal+json'
'application/json'
],
'content_type': [],
},
Expand All @@ -176,8 +186,8 @@ def __init__(self, api_client=None):
},
params_map={
'all': [
'accept',
'limit',
'offset',
'page_number',
'page_size',
'created_at_gte',
Expand Down Expand Up @@ -206,10 +216,10 @@ def __init__(self, api_client=None):
'allowed_values': {
},
'openapi_types': {
'accept':
(str,),
'limit':
(int,),
'offset':
(int,),
'page_number':
(int,),
'page_size':
Expand Down Expand Up @@ -238,8 +248,8 @@ def __init__(self, api_client=None):
(str,),
},
'attribute_map': {
'accept': 'Accept',
'limit': 'limit',
'offset': 'offset',
'page_number': 'pageNumber',
'page_size': 'pageSize',
'created_at_gte': 'created_at.gte',
Expand All @@ -255,8 +265,8 @@ def __init__(self, api_client=None):
'source': 'source',
},
'location_map': {
'accept': 'header',
'limit': 'query',
'offset': 'query',
'page_number': 'query',
'page_size': 'query',
'created_at_gte': 'query',
Expand All @@ -276,7 +286,7 @@ def __init__(self, api_client=None):
},
headers_map={
'accept': [
'application/hal+json'
'application/json'
],
'content_type': [],
},
Expand All @@ -298,6 +308,7 @@ def create(


Keyword Args:
accept (str): [optional] if omitted the server will use the default value of "application/hal+json"
create_balance_transfer_request (CreateBalanceTransferRequest): [optional]
_return_http_data_only (bool): response data without head status
code and headers. Default is True.
Expand Down Expand Up @@ -375,6 +386,7 @@ def get(
balance_transfers_id (str): ID of the `balance_transfer` resource.

Keyword Args:
accept (str): [optional] if omitted the server will use the default value of "application/hal+json"
_return_http_data_only (bool): response data without head status
code and headers. Default is True.
_preload_content (bool): if False, the urllib3.HTTPResponse object
Expand Down Expand Up @@ -450,8 +462,8 @@ def list(


Keyword Args:
accept (str): [optional] if omitted the server will use the default value of "application/hal+json"
limit (int): The numbers of items to return.. [optional]
offset (int): The number of items to skip before starting to collect the result set.. [optional]
page_number (int): The page number to list.. [optional]
page_size (int): The size of the page.. [optional]
created_at_gte (str): Filter where `created_at` is after the given date.. [optional]
Expand Down
Loading