Skip to content

Commit 9dab36a

Browse files
committed
Regenerate client.
1 parent 403c07a commit 9dab36a

File tree

99 files changed

+134
-106
lines changed

Some content is hidden

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

99 files changed

+134
-106
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Kill Bill is an open-source billing and payments platform
33

44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

6-
- API version: 0.19.15-SNAPSHOT
6+
- API version: 0.19.16-SNAPSHOT
77
- Package version: 0.0.1-SNAPSHOT
88
- Build package: org.killbill.billing.codegen.languages.KillbillPythonGenerator
99

killbill/api/account_api.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""
@@ -4049,8 +4049,10 @@ def pay_all_invoices(self, account_id=None, created_by=None, api_key=None, api_s
40494049
:param Str created_by: (required)
40504050
:param Str api_key: (required)
40514051
:param Str api_secret: (required)
4052+
:param Str payment_method_id:
40524053
:param Bool external_payment:
40534054
:param Float payment_amount:
4055+
:param Date target_date:
40544056
:param List[Str] plugin_property:
40554057
:param Str reason:
40564058
:param Str comment:
@@ -4079,8 +4081,10 @@ def pay_all_invoices_with_http_info(self, account_id=None, created_by=None, api_
40794081
:param Str created_by: (required)
40804082
:param Str api_key: (required)
40814083
:param Str api_secret: (required)
4084+
:param Str payment_method_id:
40824085
:param Bool external_payment:
40834086
:param Float payment_amount:
4087+
:param Date target_date:
40844088
:param List[Str] plugin_property:
40854089
:param Str reason:
40864090
:param Str comment:
@@ -4089,7 +4093,7 @@ def pay_all_invoices_with_http_info(self, account_id=None, created_by=None, api_
40894093
returns the request thread.
40904094
"""
40914095

4092-
all_params = ['account_id', 'created_by', 'api_key', 'api_secret', 'external_payment', 'payment_amount', 'plugin_property', 'reason', 'comment'] # noqa: E501
4096+
all_params = ['account_id', 'created_by', 'api_key', 'api_secret', 'payment_method_id', 'external_payment', 'payment_amount', 'target_date', 'plugin_property', 'reason', 'comment'] # noqa: E501
40934097
all_params.append('async')
40944098
all_params.append('_return_http_data_only')
40954099
all_params.append('_preload_content')
@@ -4130,10 +4134,14 @@ def pay_all_invoices_with_http_info(self, account_id=None, created_by=None, api_
41304134
path_params['accountId'] = params['account_id'] # noqa: E501
41314135

41324136
query_params = []
4137+
if 'payment_method_id' in params:
4138+
query_params.append(('paymentMethodId', params['payment_method_id'])) # noqa: E501
41334139
if 'external_payment' in params:
41344140
query_params.append(('externalPayment', params['external_payment'])) # noqa: E501
41354141
if 'payment_amount' in params:
41364142
query_params.append(('paymentAmount', params['payment_amount'])) # noqa: E501
4143+
if 'target_date' in params:
4144+
query_params.append(('targetDate', params['target_date'])) # noqa: E501
41374145
if 'plugin_property' in params:
41384146
query_params.append(('pluginProperty', params['plugin_property'])) # noqa: E501
41394147
collection_formats['pluginProperty'] = 'multi' # noqa: E501

killbill/api/admin_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/bundle_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/catalog_api.py

+26-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""
@@ -310,6 +310,7 @@ def get_available_addons(self, api_key=None, api_secret=None, **kwargs): # noqa
310310
:param Str api_secret: (required)
311311
:param Str base_product_name:
312312
:param Str price_list_name:
313+
:param Str account_id:
313314
:return: List[PlanDetail]
314315
If the method is called asynchronously,
315316
returns the request thread.
@@ -335,12 +336,13 @@ def get_available_addons_with_http_info(self, api_key=None, api_secret=None, **k
335336
:param Str api_secret: (required)
336337
:param Str base_product_name:
337338
:param Str price_list_name:
339+
:param Str account_id:
338340
:return: List[PlanDetail]
339341
If the method is called asynchronously,
340342
returns the request thread.
341343
"""
342344

343-
all_params = ['api_key', 'api_secret', 'base_product_name', 'price_list_name'] # noqa: E501
345+
all_params = ['api_key', 'api_secret', 'base_product_name', 'price_list_name', 'account_id'] # noqa: E501
344346
all_params.append('async')
345347
all_params.append('_return_http_data_only')
346348
all_params.append('_preload_content')
@@ -373,6 +375,8 @@ def get_available_addons_with_http_info(self, api_key=None, api_secret=None, **k
373375
query_params.append(('baseProductName', params['base_product_name'])) # noqa: E501
374376
if 'price_list_name' in params:
375377
query_params.append(('priceListName', params['price_list_name'])) # noqa: E501
378+
if 'account_id' in params:
379+
query_params.append(('accountId', params['account_id'])) # noqa: E501
376380

377381
header_params = {}
378382
if 'api_key' in params:
@@ -419,6 +423,7 @@ def get_available_base_plans(self, api_key=None, api_secret=None, **kwargs): #
419423
:param async bool
420424
:param Str api_key: (required)
421425
:param Str api_secret: (required)
426+
:param Str account_id:
422427
:return: List[PlanDetail]
423428
If the method is called asynchronously,
424429
returns the request thread.
@@ -442,12 +447,13 @@ def get_available_base_plans_with_http_info(self, api_key=None, api_secret=None,
442447
:param async bool
443448
:param Str api_key: (required)
444449
:param Str api_secret: (required)
450+
:param Str account_id:
445451
:return: List[PlanDetail]
446452
If the method is called asynchronously,
447453
returns the request thread.
448454
"""
449455

450-
all_params = ['api_key', 'api_secret'] # noqa: E501
456+
all_params = ['api_key', 'api_secret', 'account_id'] # noqa: E501
451457
all_params.append('async')
452458
all_params.append('_return_http_data_only')
453459
all_params.append('_preload_content')
@@ -476,6 +482,8 @@ def get_available_base_plans_with_http_info(self, api_key=None, api_secret=None,
476482
path_params = {}
477483

478484
query_params = []
485+
if 'account_id' in params:
486+
query_params.append(('accountId', params['account_id'])) # noqa: E501
479487

480488
header_params = {}
481489
if 'api_key' in params:
@@ -523,6 +531,7 @@ def get_catalog_json(self, api_key=None, api_secret=None, **kwargs): # noqa: E5
523531
:param Str api_key: (required)
524532
:param Str api_secret: (required)
525533
:param Datetime requested_date:
534+
:param Str account_id:
526535
:return: List[Catalog]
527536
If the method is called asynchronously,
528537
returns the request thread.
@@ -547,12 +556,13 @@ def get_catalog_json_with_http_info(self, api_key=None, api_secret=None, **kwarg
547556
:param Str api_key: (required)
548557
:param Str api_secret: (required)
549558
:param Datetime requested_date:
559+
:param Str account_id:
550560
:return: List[Catalog]
551561
If the method is called asynchronously,
552562
returns the request thread.
553563
"""
554564

555-
all_params = ['api_key', 'api_secret', 'requested_date'] # noqa: E501
565+
all_params = ['api_key', 'api_secret', 'requested_date', 'account_id'] # noqa: E501
556566
all_params.append('async')
557567
all_params.append('_return_http_data_only')
558568
all_params.append('_preload_content')
@@ -583,6 +593,8 @@ def get_catalog_json_with_http_info(self, api_key=None, api_secret=None, **kwarg
583593
query_params = []
584594
if 'requested_date' in params:
585595
query_params.append(('requestedDate', params['requested_date'])) # noqa: E501
596+
if 'account_id' in params:
597+
query_params.append(('accountId', params['account_id'])) # noqa: E501
586598

587599
header_params = {}
588600
if 'api_key' in params:
@@ -629,6 +641,7 @@ def get_catalog_versions(self, api_key=None, api_secret=None, **kwargs): # noqa
629641
:param async bool
630642
:param Str api_key: (required)
631643
:param Str api_secret: (required)
644+
:param Str account_id:
632645
:return: List[Datetime]
633646
If the method is called asynchronously,
634647
returns the request thread.
@@ -652,12 +665,13 @@ def get_catalog_versions_with_http_info(self, api_key=None, api_secret=None, **k
652665
:param async bool
653666
:param Str api_key: (required)
654667
:param Str api_secret: (required)
668+
:param Str account_id:
655669
:return: List[Datetime]
656670
If the method is called asynchronously,
657671
returns the request thread.
658672
"""
659673

660-
all_params = ['api_key', 'api_secret'] # noqa: E501
674+
all_params = ['api_key', 'api_secret', 'account_id'] # noqa: E501
661675
all_params.append('async')
662676
all_params.append('_return_http_data_only')
663677
all_params.append('_preload_content')
@@ -686,6 +700,8 @@ def get_catalog_versions_with_http_info(self, api_key=None, api_secret=None, **k
686700
path_params = {}
687701

688702
query_params = []
703+
if 'account_id' in params:
704+
query_params.append(('accountId', params['account_id'])) # noqa: E501
689705

690706
header_params = {}
691707
if 'api_key' in params:
@@ -733,6 +749,7 @@ def get_catalog_xml(self, api_key=None, api_secret=None, **kwargs): # noqa: E50
733749
:param Str api_key: (required)
734750
:param Str api_secret: (required)
735751
:param Date requested_date:
752+
:param Str account_id:
736753
:return: Str
737754
If the method is called asynchronously,
738755
returns the request thread.
@@ -757,12 +774,13 @@ def get_catalog_xml_with_http_info(self, api_key=None, api_secret=None, **kwargs
757774
:param Str api_key: (required)
758775
:param Str api_secret: (required)
759776
:param Date requested_date:
777+
:param Str account_id:
760778
:return: Str
761779
If the method is called asynchronously,
762780
returns the request thread.
763781
"""
764782

765-
all_params = ['api_key', 'api_secret', 'requested_date'] # noqa: E501
783+
all_params = ['api_key', 'api_secret', 'requested_date', 'account_id'] # noqa: E501
766784
all_params.append('async')
767785
all_params.append('_return_http_data_only')
768786
all_params.append('_preload_content')
@@ -793,6 +811,8 @@ def get_catalog_xml_with_http_info(self, api_key=None, api_secret=None, **kwargs
793811
query_params = []
794812
if 'requested_date' in params:
795813
query_params.append(('requestedDate', params['requested_date'])) # noqa: E501
814+
if 'account_id' in params:
815+
query_params.append(('accountId', params['account_id'])) # noqa: E501
796816

797817
header_params = {}
798818
if 'api_key' in params:

killbill/api/credit_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/custom_field_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/export_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/invoice_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/invoice_item_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/invoice_payment_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/nodes_info_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/overdue_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/payment_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/payment_gateway_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/payment_method_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/payment_transaction_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/plugin_info_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/security_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/subscription_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

killbill/api/tag_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Kill Bill is an open-source billing and payments platform # noqa: E501
2424
25-
OpenAPI spec version: 0.19.15-SNAPSHOT
25+
OpenAPI spec version: 0.19.16-SNAPSHOT
2626
2727
Generated by: https://github.com/swagger-api/swagger-codegen.git
2828
"""

0 commit comments

Comments
 (0)