Skip to content

Commit d73b267

Browse files
author
bitbucket-pipelines
committed
Generating Python SDK.
1 parent cbe72eb commit d73b267

28 files changed

+1480
-53
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ cashfree_pg/api
7070
__init__.py
7171
api_client.py
7272
api_response.py
73-
.idea/
73+
docs/

.openapi-generator/FILES

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,15 @@ cashfree_pg/models/terminal_details.py
159159
cashfree_pg/models/terminal_entity.py
160160
cashfree_pg/models/terminal_transaction_entity.py
161161
cashfree_pg/models/terminate_order_request.py
162+
cashfree_pg/models/update_terminal_entity.py
163+
cashfree_pg/models/update_terminal_request.py
164+
cashfree_pg/models/update_terminal_request_terminal_meta.py
165+
cashfree_pg/models/update_terminal_status_request.py
162166
cashfree_pg/models/upi.py
163167
cashfree_pg/models/upi_authorize_details.py
164168
cashfree_pg/models/upi_payment_method.py
169+
cashfree_pg/models/upload_terminal_docs.py
170+
cashfree_pg/models/upload_terminal_docs_entity.py
165171
cashfree_pg/models/vendor_split.py
166172
cashfree_pg/models/wallet_offer.py
167173
cashfree_pg/py.typed
@@ -316,7 +322,13 @@ docs/TerminateOrderRequest.md
316322
docs/TokenVaultApi.md
317323
docs/UPIAuthorizeDetails.md
318324
docs/UPIPaymentMethod.md
325+
docs/UpdateTerminalEntity.md
326+
docs/UpdateTerminalRequest.md
327+
docs/UpdateTerminalRequestTerminalMeta.md
328+
docs/UpdateTerminalStatusRequest.md
319329
docs/Upi.md
330+
docs/UploadTerminalDocs.md
331+
docs/UploadTerminalDocsEntity.md
320332
docs/VendorSplit.md
321333
docs/WalletOffer.md
322334
git_push.sh
@@ -474,9 +486,15 @@ test/test_terminal_entity.py
474486
test/test_terminal_transaction_entity.py
475487
test/test_terminate_order_request.py
476488
test/test_token_vault_api.py
489+
test/test_update_terminal_entity.py
490+
test/test_update_terminal_request.py
491+
test/test_update_terminal_request_terminal_meta.py
492+
test/test_update_terminal_status_request.py
477493
test/test_upi.py
478494
test/test_upi_authorize_details.py
479495
test/test_upi_payment_method.py
496+
test/test_upload_terminal_docs.py
497+
test/test_upload_terminal_docs_entity.py
480498
test/test_vendor_split.py
481499
test/test_wallet_offer.py
482500
tox.ini

cashfree_pg/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "4.0.3"
18+
__version__ = "4.0.7"
1919

2020
# import apis into sdk package
2121
# import ApiClient
@@ -168,6 +168,12 @@
168168
from cashfree_pg.models.terminate_order_request import TerminateOrderRequest
169169
from cashfree_pg.models.upi_authorize_details import UPIAuthorizeDetails
170170
from cashfree_pg.models.upi_payment_method import UPIPaymentMethod
171+
from cashfree_pg.models.update_terminal_entity import UpdateTerminalEntity
172+
from cashfree_pg.models.update_terminal_request import UpdateTerminalRequest
173+
from cashfree_pg.models.update_terminal_request_terminal_meta import UpdateTerminalRequestTerminalMeta
174+
from cashfree_pg.models.update_terminal_status_request import UpdateTerminalStatusRequest
171175
from cashfree_pg.models.upi import Upi
176+
from cashfree_pg.models.upload_terminal_docs import UploadTerminalDocs
177+
from cashfree_pg.models.upload_terminal_docs_entity import UploadTerminalDocsEntity
172178
from cashfree_pg.models.vendor_split import VendorSplit
173179
from cashfree_pg.models.wallet_offer import WalletOffer

0 commit comments

Comments
 (0)