@@ -7,6 +7,7 @@ README.md
77cashfree_pg/__init__.py
88cashfree_pg/api/__init__.py
99cashfree_pg/api/customers_api.py
10+ cashfree_pg/api/easy_split_api.py
1011cashfree_pg/api/eligibility_api.py
1112cashfree_pg/api/offers_api.py
1213cashfree_pg/api/orders_api.py
@@ -23,6 +24,8 @@ cashfree_pg/api_response.py
2324cashfree_pg/configuration.py
2425cashfree_pg/exceptions.py
2526cashfree_pg/models/__init__.py
27+ cashfree_pg/models/adjust_vendor_balance_request.py
28+ cashfree_pg/models/adjust_vendor_balance_response.py
2629cashfree_pg/models/api_error.py
2730cashfree_pg/models/api_error404.py
2831cashfree_pg/models/api_error409.py
@@ -33,6 +36,10 @@ cashfree_pg/models/authentication_error.py
3336cashfree_pg/models/authorization_in_payments_entity.py
3437cashfree_pg/models/authorize_order_request.py
3538cashfree_pg/models/bad_request_error.py
39+ cashfree_pg/models/balance_details.py
40+ cashfree_pg/models/bank_details.py
41+ cashfree_pg/models/banktransfer.py
42+ cashfree_pg/models/banktransfer_payment_method.py
3643cashfree_pg/models/card.py
3744cashfree_pg/models/card_emi.py
3845cashfree_pg/models/card_emi_payment_method.py
@@ -43,13 +50,16 @@ cashfree_pg/models/cardless_emi_entity.py
4350cashfree_pg/models/cardless_emi_payment_method.py
4451cashfree_pg/models/cardless_emi_queries.py
4552cashfree_pg/models/cashback_details.py
53+ cashfree_pg/models/charges_details.py
4654cashfree_pg/models/create_customer_request.py
4755cashfree_pg/models/create_link_request.py
4856cashfree_pg/models/create_offer_request.py
4957cashfree_pg/models/create_order_request.py
5058cashfree_pg/models/create_terminal_request.py
5159cashfree_pg/models/create_terminal_request_terminal_meta.py
5260cashfree_pg/models/create_terminal_transaction_request.py
61+ cashfree_pg/models/create_vendor_request.py
62+ cashfree_pg/models/create_vendor_response.py
5363cashfree_pg/models/cryptogram_entity.py
5464cashfree_pg/models/customer_details.py
5565cashfree_pg/models/customer_details_cardless_emi.py
@@ -67,6 +77,13 @@ cashfree_pg/models/eligibility_payment_methods_entity_entity_details.py
6777cashfree_pg/models/emi_offer.py
6878cashfree_pg/models/emi_plans_array.py
6979cashfree_pg/models/error_details_in_payments_entity.py
80+ cashfree_pg/models/es_order_recon_request.py
81+ cashfree_pg/models/es_order_recon_request_filters.py
82+ cashfree_pg/models/es_order_recon_request_pagination.py
83+ cashfree_pg/models/es_order_recon_response.py
84+ cashfree_pg/models/es_order_recon_response_data_inner.py
85+ cashfree_pg/models/es_order_recon_response_data_inner_order_splits_inner.py
86+ cashfree_pg/models/es_order_recon_response_data_inner_order_splits_inner_split_inner.py
7087cashfree_pg/models/fetch_recon_request.py
7188cashfree_pg/models/fetch_recon_request_filters.py
7289cashfree_pg/models/fetch_recon_request_pagination.py
@@ -79,6 +96,7 @@ cashfree_pg/models/instrument_entity.py
7996cashfree_pg/models/instrument_webhook.py
8097cashfree_pg/models/instrument_webhook_data.py
8198cashfree_pg/models/instrument_webhook_data_entity.py
99+ cashfree_pg/models/kyc_details.py
82100cashfree_pg/models/link_customer_details_entity.py
83101cashfree_pg/models/link_entity.py
84102cashfree_pg/models/link_meta_response_entity.py
@@ -121,6 +139,8 @@ cashfree_pg/models/payment_link_customer_details.py
121139cashfree_pg/models/payment_link_order_entity.py
122140cashfree_pg/models/payment_method_app_in_payments_entity.py
123141cashfree_pg/models/payment_method_app_in_payments_entity_app.py
142+ cashfree_pg/models/payment_method_bank_transfer_in_payments_entity.py
143+ cashfree_pg/models/payment_method_bank_transfer_in_payments_entity_banktransfer.py
124144cashfree_pg/models/payment_method_card_emiin_payments_entity.py
125145cashfree_pg/models/payment_method_card_emiin_payments_entity_emi.py
126146cashfree_pg/models/payment_method_card_emiin_payments_entity_emi_emi_details.py
@@ -149,29 +169,54 @@ cashfree_pg/models/refund_speed.py
149169cashfree_pg/models/refund_webhook.py
150170cashfree_pg/models/refund_webhook_data_entity.py
151171cashfree_pg/models/saved_instrument_meta.py
172+ cashfree_pg/models/schedule_option.py
152173cashfree_pg/models/settlement_entity.py
153174cashfree_pg/models/settlement_fetch_recon_request.py
154175cashfree_pg/models/settlement_recon_entity.py
155176cashfree_pg/models/settlement_recon_entity_data_inner.py
156177cashfree_pg/models/settlement_webhook.py
157178cashfree_pg/models/settlement_webhook_data_entity.py
179+ cashfree_pg/models/split_after_payment_request.py
180+ cashfree_pg/models/split_after_payment_request_split_inner.py
181+ cashfree_pg/models/split_after_payment_request_split_inner_tags_inner.py
182+ cashfree_pg/models/split_after_payment_response.py
183+ cashfree_pg/models/static_split_request.py
184+ cashfree_pg/models/static_split_request_scheme_inner.py
185+ cashfree_pg/models/static_split_response.py
186+ cashfree_pg/models/static_split_response_scheme_inner.py
158187cashfree_pg/models/terminal_details.py
159188cashfree_pg/models/terminal_entity.py
189+ cashfree_pg/models/terminal_payment_entity.py
160190cashfree_pg/models/terminal_transaction_entity.py
161191cashfree_pg/models/terminate_order_request.py
192+ cashfree_pg/models/transfer_details.py
193+ cashfree_pg/models/transfer_details_tags_inner.py
162194cashfree_pg/models/update_terminal_entity.py
163195cashfree_pg/models/update_terminal_request.py
164196cashfree_pg/models/update_terminal_request_terminal_meta.py
165197cashfree_pg/models/update_terminal_status_request.py
198+ cashfree_pg/models/update_vendor_request.py
199+ cashfree_pg/models/update_vendor_response.py
166200cashfree_pg/models/upi.py
167201cashfree_pg/models/upi_authorize_details.py
202+ cashfree_pg/models/upi_details.py
168203cashfree_pg/models/upi_payment_method.py
169204cashfree_pg/models/upload_terminal_docs.py
170205cashfree_pg/models/upload_terminal_docs_entity.py
206+ cashfree_pg/models/upload_vendor_docs_request.py
207+ cashfree_pg/models/upload_vendor_documents_response.py
208+ cashfree_pg/models/vendor_balance.py
209+ cashfree_pg/models/vendor_balance_transfer_charges.py
210+ cashfree_pg/models/vendor_document_download_response.py
211+ cashfree_pg/models/vendor_documents_response.py
212+ cashfree_pg/models/vendor_entity.py
213+ cashfree_pg/models/vendor_entity_related_docs_inner.py
171214cashfree_pg/models/vendor_split.py
172215cashfree_pg/models/wallet_offer.py
173216cashfree_pg/py.typed
174217cashfree_pg/rest.py
218+ docs/AdjustVendorBalanceRequest.md
219+ docs/AdjustVendorBalanceResponse.md
175220docs/ApiError.md
176221docs/ApiError404.md
177222docs/ApiError409.md
@@ -182,6 +227,10 @@ docs/AuthenticationError.md
182227docs/AuthorizationInPaymentsEntity.md
183228docs/AuthorizeOrderRequest.md
184229docs/BadRequestError.md
230+ docs/BalanceDetails.md
231+ docs/BankDetails.md
232+ docs/Banktransfer.md
233+ docs/BanktransferPaymentMethod.md
185234docs/Card.md
186235docs/CardEMI.md
187236docs/CardEMIPaymentMethod.md
@@ -192,13 +241,16 @@ docs/CardlessEMIEntity.md
192241docs/CardlessEMIPaymentMethod.md
193242docs/CardlessEMIQueries.md
194243docs/CashbackDetails.md
244+ docs/ChargesDetails.md
195245docs/CreateCustomerRequest.md
196246docs/CreateLinkRequest.md
197247docs/CreateOfferRequest.md
198248docs/CreateOrderRequest.md
199249docs/CreateTerminalRequest.md
200250docs/CreateTerminalRequestTerminalMeta.md
201251docs/CreateTerminalTransactionRequest.md
252+ docs/CreateVendorRequest.md
253+ docs/CreateVendorResponse.md
202254docs/CryptogramEntity.md
203255docs/CustomerDetails.md
204256docs/CustomerDetailsCardlessEMI.md
@@ -207,6 +259,14 @@ docs/CustomersApi.md
207259docs/DiscountDetails.md
208260docs/EMIOffer.md
209261docs/EMIPlansArray.md
262+ docs/ESOrderReconRequest.md
263+ docs/ESOrderReconRequestFilters.md
264+ docs/ESOrderReconRequestPagination.md
265+ docs/ESOrderReconResponse.md
266+ docs/ESOrderReconResponseDataInner.md
267+ docs/ESOrderReconResponseDataInnerOrderSplitsInner.md
268+ docs/ESOrderReconResponseDataInnerOrderSplitsInnerSplitInner.md
269+ docs/EasySplitApi.md
210270docs/EligibilityApi.md
211271docs/EligibilityCardlessEMIEntity.md
212272docs/EligibilityFetchCardlessEMIRequest.md
@@ -230,6 +290,7 @@ docs/InstrumentEntity.md
230290docs/InstrumentWebhook.md
231291docs/InstrumentWebhookData.md
232292docs/InstrumentWebhookDataEntity.md
293+ docs/KycDetails.md
233294docs/LinkCustomerDetailsEntity.md
234295docs/LinkEntity.md
235296docs/LinkMetaResponseEntity.md
@@ -276,6 +337,8 @@ docs/PaymentLinkOrderEntity.md
276337docs/PaymentLinksApi.md
277338docs/PaymentMethodAppInPaymentsEntity.md
278339docs/PaymentMethodAppInPaymentsEntityApp.md
340+ docs/PaymentMethodBankTransferInPaymentsEntity.md
341+ docs/PaymentMethodBankTransferInPaymentsEntityBanktransfer.md
279342docs/PaymentMethodCardEMIInPaymentsEntity.md
280343docs/PaymentMethodCardEMIInPaymentsEntityEmi.md
281344docs/PaymentMethodCardEMIInPaymentsEntityEmiEmiDetails.md
@@ -306,6 +369,7 @@ docs/RefundWebhook.md
306369docs/RefundWebhookDataEntity.md
307370docs/RefundsApi.md
308371docs/SavedInstrumentMeta.md
372+ docs/ScheduleOption.md
309373docs/SettlementEntity.md
310374docs/SettlementFetchReconRequest.md
311375docs/SettlementReconEntity.md
@@ -315,20 +379,42 @@ docs/SettlementWebhook.md
315379docs/SettlementWebhookDataEntity.md
316380docs/SettlementsApi.md
317381docs/SoftPOSApi.md
382+ docs/SplitAfterPaymentRequest.md
383+ docs/SplitAfterPaymentRequestSplitInner.md
384+ docs/SplitAfterPaymentRequestSplitInnerTagsInner.md
385+ docs/SplitAfterPaymentResponse.md
386+ docs/StaticSplitRequest.md
387+ docs/StaticSplitRequestSchemeInner.md
388+ docs/StaticSplitResponse.md
389+ docs/StaticSplitResponseSchemeInner.md
318390docs/TerminalDetails.md
319391docs/TerminalEntity.md
392+ docs/TerminalPaymentEntity.md
320393docs/TerminalTransactionEntity.md
321394docs/TerminateOrderRequest.md
322395docs/TokenVaultApi.md
396+ docs/TransferDetails.md
397+ docs/TransferDetailsTagsInner.md
323398docs/UPIAuthorizeDetails.md
324399docs/UPIPaymentMethod.md
325400docs/UpdateTerminalEntity.md
326401docs/UpdateTerminalRequest.md
327402docs/UpdateTerminalRequestTerminalMeta.md
328403docs/UpdateTerminalStatusRequest.md
404+ docs/UpdateVendorRequest.md
405+ docs/UpdateVendorResponse.md
329406docs/Upi.md
407+ docs/UpiDetails.md
330408docs/UploadTerminalDocs.md
331409docs/UploadTerminalDocsEntity.md
410+ docs/UploadVendorDocsRequest.md
411+ docs/UploadVendorDocumentsResponse.md
412+ docs/VendorBalance.md
413+ docs/VendorBalanceTransferCharges.md
414+ docs/VendorDocumentDownloadResponse.md
415+ docs/VendorDocumentsResponse.md
416+ docs/VendorEntity.md
417+ docs/VendorEntityRelatedDocsInner.md
332418docs/VendorSplit.md
333419docs/WalletOffer.md
334420git_push.sh
@@ -338,6 +424,8 @@ setup.cfg
338424setup.py
339425test-requirements.txt
340426test/__init__.py
427+ test/test_adjust_vendor_balance_request.py
428+ test/test_adjust_vendor_balance_response.py
341429test/test_api_error.py
342430test/test_api_error404.py
343431test/test_api_error409.py
@@ -348,6 +436,10 @@ test/test_authentication_error.py
348436test/test_authorization_in_payments_entity.py
349437test/test_authorize_order_request.py
350438test/test_bad_request_error.py
439+ test/test_balance_details.py
440+ test/test_bank_details.py
441+ test/test_banktransfer.py
442+ test/test_banktransfer_payment_method.py
351443test/test_card.py
352444test/test_card_emi.py
353445test/test_card_emi_payment_method.py
@@ -358,19 +450,23 @@ test/test_cardless_emi_entity.py
358450test/test_cardless_emi_payment_method.py
359451test/test_cardless_emi_queries.py
360452test/test_cashback_details.py
453+ test/test_charges_details.py
361454test/test_create_customer_request.py
362455test/test_create_link_request.py
363456test/test_create_offer_request.py
364457test/test_create_order_request.py
365458test/test_create_terminal_request.py
366459test/test_create_terminal_request_terminal_meta.py
367460test/test_create_terminal_transaction_request.py
461+ test/test_create_vendor_request.py
462+ test/test_create_vendor_response.py
368463test/test_cryptogram_entity.py
369464test/test_customer_details.py
370465test/test_customer_details_cardless_emi.py
371466test/test_customer_entity.py
372467test/test_customers_api.py
373468test/test_discount_details.py
469+ test/test_easy_split_api.py
374470test/test_eligibility_api.py
375471test/test_eligibility_cardless_emi_entity.py
376472test/test_eligibility_fetch_cardless_emi_request.py
@@ -384,6 +480,13 @@ test/test_eligibility_payment_methods_entity_entity_details.py
384480test/test_emi_offer.py
385481test/test_emi_plans_array.py
386482test/test_error_details_in_payments_entity.py
483+ test/test_es_order_recon_request.py
484+ test/test_es_order_recon_request_filters.py
485+ test/test_es_order_recon_request_pagination.py
486+ test/test_es_order_recon_response.py
487+ test/test_es_order_recon_response_data_inner.py
488+ test/test_es_order_recon_response_data_inner_order_splits_inner.py
489+ test/test_es_order_recon_response_data_inner_order_splits_inner_split_inner.py
387490test/test_fetch_recon_request.py
388491test/test_fetch_recon_request_filters.py
389492test/test_fetch_recon_request_pagination.py
@@ -396,6 +499,7 @@ test/test_instrument_entity.py
396499test/test_instrument_webhook.py
397500test/test_instrument_webhook_data.py
398501test/test_instrument_webhook_data_entity.py
502+ test/test_kyc_details.py
399503test/test_link_customer_details_entity.py
400504test/test_link_entity.py
401505test/test_link_meta_response_entity.py
@@ -441,6 +545,8 @@ test/test_payment_link_order_entity.py
441545test/test_payment_links_api.py
442546test/test_payment_method_app_in_payments_entity.py
443547test/test_payment_method_app_in_payments_entity_app.py
548+ test/test_payment_method_bank_transfer_in_payments_entity.py
549+ test/test_payment_method_bank_transfer_in_payments_entity_banktransfer.py
444550test/test_payment_method_card_emiin_payments_entity.py
445551test/test_payment_method_card_emiin_payments_entity_emi.py
446552test/test_payment_method_card_emiin_payments_entity_emi_emi_details.py
@@ -472,6 +578,7 @@ test/test_refund_webhook.py
472578test/test_refund_webhook_data_entity.py
473579test/test_refunds_api.py
474580test/test_saved_instrument_meta.py
581+ test/test_schedule_option.py
475582test/test_settlement_entity.py
476583test/test_settlement_fetch_recon_request.py
477584test/test_settlement_recon_entity.py
@@ -481,20 +588,42 @@ test/test_settlement_webhook.py
481588test/test_settlement_webhook_data_entity.py
482589test/test_settlements_api.py
483590test/test_soft_pos_api.py
591+ test/test_split_after_payment_request.py
592+ test/test_split_after_payment_request_split_inner.py
593+ test/test_split_after_payment_request_split_inner_tags_inner.py
594+ test/test_split_after_payment_response.py
595+ test/test_static_split_request.py
596+ test/test_static_split_request_scheme_inner.py
597+ test/test_static_split_response.py
598+ test/test_static_split_response_scheme_inner.py
484599test/test_terminal_details.py
485600test/test_terminal_entity.py
601+ test/test_terminal_payment_entity.py
486602test/test_terminal_transaction_entity.py
487603test/test_terminate_order_request.py
488604test/test_token_vault_api.py
605+ test/test_transfer_details.py
606+ test/test_transfer_details_tags_inner.py
489607test/test_update_terminal_entity.py
490608test/test_update_terminal_request.py
491609test/test_update_terminal_request_terminal_meta.py
492610test/test_update_terminal_status_request.py
611+ test/test_update_vendor_request.py
612+ test/test_update_vendor_response.py
493613test/test_upi.py
494614test/test_upi_authorize_details.py
615+ test/test_upi_details.py
495616test/test_upi_payment_method.py
496617test/test_upload_terminal_docs.py
497618test/test_upload_terminal_docs_entity.py
619+ test/test_upload_vendor_docs_request.py
620+ test/test_upload_vendor_documents_response.py
621+ test/test_vendor_balance.py
622+ test/test_vendor_balance_transfer_charges.py
623+ test/test_vendor_document_download_response.py
624+ test/test_vendor_documents_response.py
625+ test/test_vendor_entity.py
626+ test/test_vendor_entity_related_docs_inner.py
498627test/test_vendor_split.py
499628test/test_wallet_offer.py
500629tox.ini
0 commit comments