Skip to content

Commit a850106

Browse files
author
xendit-devx-bot
committed
Generated Xendit python SDK
1 parent 63f50bf commit a850106

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+55
-55
lines changed

README.md

+1-1

docs/InvoiceApi.md

+1-1

docs/invoice/ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner.md

+1-1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xendit-python"
3-
version = "6.1.0"
3+
version = "6.2.0"
44
description = "Xendit REST API Client for Python - Invoice, Payment Request, Payment Method, Refund, Balance, Transaction, Customer, and Payout Services https://xendit.github.io/apireference/"
55
authors = ["DevX Team <[email protected]>"]
66
license = "MIT"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages # noqa: H301
77

88
NAME = "xendit"
9-
VERSION = "6.1.0"
9+
VERSION = "6.2.0"
1010
# To install the library, run the following
1111
#
1212
# python setup.py install

xendit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77

8-
__version__ = "6.1.0"
8+
__version__ = "6.2.0"
99

1010
# import ApiClient
1111
from xendit.api_client import ApiClient

xendit/api_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474

7575
# XENDIT headers
7676
self.default_headers['xendit-lib'] = 'python'
77-
self.default_headers['xendit-lib-ver'] = '6.1.0'
77+
self.default_headers['xendit-lib-ver'] = '6.2.0'
7878

7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/6.1.0/python'
81+
self.user_agent = 'OpenAPI-Generator/6.2.0/python'
8282

8383
def __enter__(self):
8484
return self

xendit/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def to_debug_report(self):
365365
"OS: {env}\n"\
366366
"Python Version: {pyversion}\n"\
367367
"Version of the API: 1.70.0\n"\
368-
"SDK Package Version: 6.1.0".\
368+
"SDK Package Version: 6.2.0".\
369369
format(env=sys.platform, pyversion=sys.version)
370370

371371
def get_host_settings(self):

xendit/invoice/invoice_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
xendit-invoice-service descriptions # noqa: E501
55
6-
The version of the OpenAPI document: 1.8.7
6+
The version of the OpenAPI document: 1.8.8
77
"""
88

99
import re # noqa: F401

xendit/invoice/model/address_object.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/alternative_display_item.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/bad_request_error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/bank.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/bank_code.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/channel_properties.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/channel_properties_cards.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/channel_properties_cards_installment_configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/channel_properties_cards_installment_configuration_allowed_terms_inner.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

@@ -80,7 +80,7 @@ def openapi_types():
8080
"""
8181
return {
8282
'issuer': (str, none_type), # noqa: E501
83-
'allowed_terms': ([float], none_type), # noqa: E501
83+
'terms': ([float], none_type), # noqa: E501
8484
}
8585

8686
@cached_property
@@ -90,7 +90,7 @@ def discriminator():
9090

9191
attribute_map = {
9292
'issuer': 'issuer', # noqa: E501
93-
'allowed_terms': 'allowed_terms', # noqa: E501
93+
'terms': 'terms', # noqa: E501
9494
}
9595

9696
read_only_vars = {
@@ -135,7 +135,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
135135
through its discriminator because we passed in
136136
_visited_composed_classes = (Animal,)
137137
issuer (str): The bank code of the installment provider / issuer. [optional] # noqa: E501
138-
allowed_terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
138+
terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
139139
"""
140140

141141
_check_type = kwargs.pop('_check_type', True)
@@ -191,7 +191,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
191191
@convert_js_args_to_python_args
192192
def __init__(self,
193193
issuer: str | None = None,
194-
allowed_terms: list | None = None,
194+
terms: list | None = None,
195195
*args, **kwargs
196196
): # noqa: E501
197197
"""ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner - a model defined in OpenAPI
@@ -229,7 +229,7 @@ def __init__(self,
229229
through its discriminator because we passed in
230230
_visited_composed_classes = (Animal,)
231231
issuer (str): The bank code of the installment provider / issuer. [optional] # noqa: E501
232-
allowed_terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
232+
terms ([float]): An array containing list of installment tenor available to choose. [optional] # noqa: E501
233233
"""
234234

235235
_check_type = kwargs.pop('_check_type', True)
@@ -263,8 +263,8 @@ def __init__(self,
263263

264264
if issuer is not None:
265265
self.issuer = issuer
266-
if allowed_terms is not None:
267-
self.allowed_terms = allowed_terms
266+
if terms is not None:
267+
self.terms = terms
268268
for var_name, var_value in kwargs.items():
269269
if var_name not in self.attribute_map and \
270270
self._configuration is not None and \

xendit/invoice/model/create_invoice_request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/customer_object.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/direct_debit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/direct_debit_type.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/ewallet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/ewallet_type.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/forbidden_error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_callback.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_callback_item.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_client_type.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_currency.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_error404_response_definition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_fee.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_item.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_not_found_error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_payment_method.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/invoice_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/notification_channel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/notification_preference.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/paylater.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/paylater_type.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/payment_details.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/qr_code.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/qr_code_type.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/retail_outlet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/retail_outlet_name.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

xendit/invoice/model/server_error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
The version of the XENDIT API: 1.8.7
2+
The version of the XENDIT API: 1.8.8
33
"""
44

55

0 commit comments

Comments
 (0)