@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
  4. package/sdk/application/Cart/CartApplicationClient.js +82 -71
  5. package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
  6. package/sdk/application/Cart/CartApplicationValidator.js +59 -34
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
  16. package/sdk/application/Content/ContentApplicationClient.js +34 -115
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
  20. package/sdk/application/Lead/LeadApplicationClient.js +14 -14
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +24 -24
  25. package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
  26. package/sdk/application/Order/OrderApplicationModel.js +28 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
  28. package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
  29. package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
  30. package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
  31. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
  32. package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
  33. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
  34. package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
  35. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
  36. package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
  37. package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
  38. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  39. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  40. package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
  41. package/sdk/application/User/UserApplicationClient.d.ts +64 -64
  42. package/sdk/application/User/UserApplicationClient.js +64 -64
  43. package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
  44. package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
  45. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
  46. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
  47. package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
  48. package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
  49. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
  50. package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
  51. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
  52. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
  53. package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
  54. package/sdk/platform/Cart/CartPlatformModel.js +12 -0
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
  58. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
  59. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
  60. package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
  61. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
  62. package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
  63. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
  64. package/sdk/platform/Common/CommonPlatformClient.js +3 -3
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
  66. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
  67. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
  68. package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
  70. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
  71. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
  72. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
  73. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
  74. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
  75. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
  76. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
  77. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
  78. package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
  79. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
  80. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
  81. package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
  82. package/sdk/platform/Content/ContentPlatformClient.js +7 -7
  83. package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
  84. package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
  85. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
  86. package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
  87. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +19 -55
  88. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +19 -55
  89. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
  90. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
  91. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -12
  92. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -14
  93. package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
  94. package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
  95. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
  96. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
  97. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
  98. package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
  99. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
  100. package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
  101. package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
  102. package/sdk/platform/Order/OrderPlatformClient.js +79 -294
  103. package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
  104. package/sdk/platform/Order/OrderPlatformModel.js +34 -2
  105. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
  106. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
  107. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
  108. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
  109. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
  110. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
  111. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  112. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  113. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
  114. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
  115. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
  116. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
  117. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
  118. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
  119. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
  120. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
  121. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  122. package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
  123. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
  124. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
  125. package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
  126. package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
  127. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
  128. package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
  129. package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
  130. package/sdk/platform/User/UserPlatformModel.js +2 -2
  131. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
  132. package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
  133. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
  134. package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
  135. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
  136. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
  137. package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
  138. package/sdk/public/Partner/PartnerPublicClient.js +2 -2
  139. package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
  140. package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
@@ -48,7 +48,7 @@ declare class Payment {
48
48
  verifyIfscCode: string;
49
49
  verifyOtpAndAddBeneficiaryForBank: string;
50
50
  verifyOtpAndAddBeneficiaryForWallet: string;
51
- walletLinkInitiate: string;
51
+ walletLinkInitate: string;
52
52
  };
53
53
  _urls: {};
54
54
  updateUrls(urls: any): void;
@@ -59,8 +59,8 @@ declare class Payment {
59
59
  * @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
60
60
  * Success response
61
61
  * @name addBeneficiaryDetails
62
- * @summary: Save bank details for cancelled/returned order
63
- * @description: Use this API to save the bank details for a returned or cancelled order to refund the amount. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addBeneficiaryDetails/).
62
+ * @summary: Add beneficiary.
63
+ * @description: Adds beneficiary details for future transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addBeneficiaryDetails/).
64
64
  */
65
65
  addBeneficiaryDetails({ body, requestHeaders }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
66
66
  /**
@@ -72,8 +72,8 @@ declare class Payment {
72
72
  * @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
73
73
  * Success response
74
74
  * @name addRefundBankAccountUsingOTP
75
- * @summary: Save bank details for cancelled/returned order
76
- * @description: Use this API to save bank details for returned/cancelled order to refund amount in his account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addRefundBankAccountUsingOTP/).
75
+ * @summary: Add refund account.
76
+ * @description: Adds a bank account for refunds using OTP verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/addRefundBankAccountUsingOTP/).
77
77
  */
78
78
  addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
79
79
  /**
@@ -82,8 +82,8 @@ declare class Payment {
82
82
  * @param {import("../ApplicationAPIClient").Options} - Options
83
83
  * @returns {Promise<PaymentApplicationModel.AttachCardsResponse>} - Success response
84
84
  * @name attachCardToCustomer
85
- * @summary: Attach a saved card to customer.
86
- * @description: Use this API to attach a customer's saved card at the payment gateway, such as Stripe, Juspay. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/attachCardToCustomer/).
85
+ * @summary: Attach card to user.
86
+ * @description: Links a payment card to a customer's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/attachCardToCustomer/).
87
87
  */
88
88
  attachCardToCustomer({ body, requestHeaders }?: PaymentApplicationValidator.AttachCardToCustomerParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AttachCardsResponse>;
89
89
  /**
@@ -93,8 +93,8 @@ declare class Payment {
93
93
  * @returns {Promise<PaymentApplicationModel.CancelPaymentLinkResponse>} -
94
94
  * Success response
95
95
  * @name cancelPaymentLink
96
- * @summary: Cancel payment link
97
- * @description: Use this API to cancel a payment link for the customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
96
+ * @summary: Cancel link.
97
+ * @description: Cancels a previously generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cancelPaymentLink/).
98
98
  */
99
99
  cancelPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CancelPaymentLinkResponse>;
100
100
  /**
@@ -103,8 +103,8 @@ declare class Payment {
103
103
  * @param {import("../ApplicationAPIClient").Options} - Options
104
104
  * @returns {Promise<PaymentApplicationModel.CardDetailsResponse>} - Success response
105
105
  * @name cardDetails
106
- * @summary: API to get Card info from PG
107
- * @description: API to get Card info from PG - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cardDetails/).
106
+ * @summary: Fetch card details.
107
+ * @description: Gets the details of a specified payment card. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cardDetails/).
108
108
  */
109
109
  cardDetails({ cardInfo, aggregator, requestHeaders }?: PaymentApplicationValidator.CardDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CardDetailsResponse>;
110
110
  /**
@@ -117,8 +117,8 @@ declare class Payment {
117
117
  * - Success response
118
118
  *
119
119
  * @name checkAndUpdatePaymentStatus
120
- * @summary: Performs continuous polling to check status of payment on the server
121
- * @description: Use this API to perform continuous polling at intervals to check the status of payment until timeout. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatus/).
120
+ * @summary: Update payment status.
121
+ * @description: Checks and updates the current status of a payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatus/).
122
122
  */
123
123
  checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
124
124
  /**
@@ -131,8 +131,8 @@ declare class Payment {
131
131
  * - Success response
132
132
  *
133
133
  * @name checkAndUpdatePaymentStatusPaymentLink
134
- * @summary: Performs continuous polling to check status of payment on the server
135
- * @description: Use this API to perform continuous polling at intervals to check the status of payment until timeout. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
134
+ * @summary: Update link status.
135
+ * @description: Checks and updates the status of payment via a link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkAndUpdatePaymentStatusPaymentLink/).
136
136
  */
137
137
  checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
138
138
  /**
@@ -141,8 +141,8 @@ declare class Payment {
141
141
  * @param {import("../ApplicationAPIClient").Options} - Options
142
142
  * @returns {Promise<PaymentApplicationModel.CheckCreditResponse>} - Success response
143
143
  * @name checkCredit
144
- * @summary: API to fetch the customer credit summary
145
- * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkCredit/).
144
+ * @summary: Verify credit.
145
+ * @description: Checks the availability and status of customer credit. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkCredit/).
146
146
  */
147
147
  checkCredit({ aggregator, requestHeaders }?: PaymentApplicationValidator.CheckCreditParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CheckCreditResponse>;
148
148
  /**
@@ -154,8 +154,8 @@ declare class Payment {
154
154
  * @returns {Promise<PaymentApplicationModel.CreateOrderUserResponse>} -
155
155
  * Success response
156
156
  * @name createOrderHandlerPaymentLink
157
- * @summary: Create Order user
158
- * @description: Use this API to create a order and payment on aggregator side - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createOrderHandlerPaymentLink/).
157
+ * @summary: Order via link.
158
+ * @description: Creates an order handler for payment through a link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createOrderHandlerPaymentLink/).
159
159
  */
160
160
  createOrderHandlerPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreateOrderUserResponse>;
161
161
  /**
@@ -165,8 +165,8 @@ declare class Payment {
165
165
  * @returns {Promise<PaymentApplicationModel.CreatePaymentLinkResponse>} -
166
166
  * Success response
167
167
  * @name createPaymentLink
168
- * @summary: Create payment link
169
- * @description: Use this API to create a payment link for the customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
168
+ * @summary: Create payment link.
169
+ * @description: Generates a new payment link for transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/createPaymentLink/).
170
170
  */
171
171
  createPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreatePaymentLinkResponse>;
172
172
  /**
@@ -187,8 +187,8 @@ declare class Payment {
187
187
  * - Success response
188
188
  *
189
189
  * @name customerCreditSummary
190
- * @summary: API to fetch the customer credit summary
191
- * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerCreditSummary/).
190
+ * @summary: Credit summary.
191
+ * @description: Retrieves a summary of the customer's credit details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerCreditSummary/).
192
192
  */
193
193
  customerCreditSummary({ aggregator, requestHeaders }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerCreditSummaryResponse>;
194
194
  /**
@@ -198,8 +198,8 @@ declare class Payment {
198
198
  * @returns {Promise<PaymentApplicationModel.CustomerOnboardingResponse>} -
199
199
  * Success response
200
200
  * @name customerOnboard
201
- * @summary: API to fetch the customer credit summary
202
- * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerOnboard/).
201
+ * @summary: Onboard customer.
202
+ * @description: Initiates the onboarding process for payment services. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerOnboard/).
203
203
  */
204
204
  customerOnboard({ body, requestHeaders }?: PaymentApplicationValidator.CustomerOnboardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerOnboardingResponse>;
205
205
  /**
@@ -208,8 +208,8 @@ declare class Payment {
208
208
  * @param {import("../ApplicationAPIClient").Options} - Options
209
209
  * @returns {Promise<PaymentApplicationModel.DeleteCardsResponse>} - Success response
210
210
  * @name deleteUserCard
211
- * @summary: Delete a card
212
- * @description: Use this API to delete a card added by a user on the payment gateway and clear the cache. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
211
+ * @summary: Remove user's card.
212
+ * @description: Deletes a payment card from the user's account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/deleteUserCard/).
213
213
  */
214
214
  deleteUserCard({ body, requestHeaders }?: PaymentApplicationValidator.DeleteUserCardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.DeleteCardsResponse>;
215
215
  /**
@@ -232,8 +232,8 @@ declare class Payment {
232
232
  * - Success response
233
233
  *
234
234
  * @name enableOrDisableRefundTransferMode
235
- * @summary: Enable/Disable a mode for transferring a refund
236
- * @description: Activate or Deactivate Transfer Mode to collect Beneficiary Details for Refund - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/enableOrDisableRefundTransferMode/).
235
+ * @summary: Toggle refund mode.
236
+ * @description: Enables or disables a particular refund transfer mode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/enableOrDisableRefundTransferMode/).
237
237
  */
238
238
  enableOrDisableRefundTransferMode({ body, requestHeaders }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.UpdateRefundTransferModeResponse>;
239
239
  /**
@@ -244,8 +244,8 @@ declare class Payment {
244
244
  * - Success response
245
245
  *
246
246
  * @name getActiveCardAggregator
247
- * @summary: Fetch active payment gateway for card payments
248
- * @description: Use this API to retrieve an active payment aggregator along with the Customer ID. This is applicable for cards payments only. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveCardAggregator/).
247
+ * @summary: Active card info.
248
+ * @description: Gets the active card aggregator for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveCardAggregator/).
249
249
  */
250
250
  getActiveCardAggregator({ refresh, requestHeaders }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ActiveCardPaymentGatewayResponse>;
251
251
  /**
@@ -256,8 +256,8 @@ declare class Payment {
256
256
  * @param {import("../ApplicationAPIClient").Options} - Options
257
257
  * @returns {Promise<PaymentApplicationModel.TransferModeResponse>} - Success response
258
258
  * @name getActiveRefundTransferModes
259
- * @summary: Lists the mode of refund
260
- * @description: Use this API to retrieve eligible refund modes (such as Netbanking) and add the beneficiary details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveRefundTransferModes/).
259
+ * @summary: Refund modes.
260
+ * @description: Lists the active transfer modes for refunds. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveRefundTransferModes/).
261
261
  */
262
262
  getActiveRefundTransferModes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.TransferModeResponse>;
263
263
  /**
@@ -266,8 +266,8 @@ declare class Payment {
266
266
  * @param {import("../ApplicationAPIClient").Options} - Options
267
267
  * @returns {Promise<PaymentApplicationModel.ListCardsResponse>} - Success response
268
268
  * @name getActiveUserCards
269
- * @summary: Fetch the list of cards saved by the user
270
- * @description: Use this API to retrieve a list of cards stored by user from an active payment gateway. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveUserCards/).
269
+ * @summary: List user's cards.
270
+ * @description: Retrieves all active cards linked to a user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getActiveUserCards/).
271
271
  */
272
272
  getActiveUserCards({ forceRefresh, requestHeaders }?: PaymentApplicationValidator.GetActiveUserCardsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ListCardsResponse>;
273
273
  /**
@@ -278,8 +278,8 @@ declare class Payment {
278
278
  * - Success response
279
279
  *
280
280
  * @name getAggregatorsConfig
281
- * @summary: Get payment gateway keys
282
- * @description: Use this API to retrieve the payment gateway key, secrets, merchant, SDK/API details to complete a payment at front-end. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getAggregatorsConfig/).
281
+ * @summary: Fetch payment aggregators.
282
+ * @description: Retrieves configuration details for available payment aggregators. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getAggregatorsConfig/).
283
283
  */
284
284
  getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AggregatorsConfigDetailResponse>;
285
285
  /**
@@ -291,8 +291,8 @@ declare class Payment {
291
291
  * @returns {Promise<PaymentApplicationModel.EpaylaterBannerResponse>} -
292
292
  * Success response
293
293
  * @name getEpaylaterBannerDetails
294
- * @summary: Get Epaylater Enabled
295
- * @description: Get Epaylater Enabled if user is tentatively approved by epaylater - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getEpaylaterBannerDetails/).
294
+ * @summary: Epay banner info.
295
+ * @description: Gets details for displaying the Epaylater payment banner. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getEpaylaterBannerDetails/).
296
296
  */
297
297
  getEpaylaterBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.EpaylaterBannerResponse>;
298
298
  /**
@@ -304,8 +304,8 @@ declare class Payment {
304
304
  * @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
305
305
  * Success response
306
306
  * @name getOrderBeneficiariesDetail
307
- * @summary: Lists the beneficiary of a refund
308
- * @description: Use this API to get the details of all active beneficiary added by a user for refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getOrderBeneficiariesDetail/).
307
+ * @summary: Order beneficiaries.
308
+ * @description: Retrieve the beneficiary details related to an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getOrderBeneficiariesDetail/).
309
309
  */
310
310
  getOrderBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
311
311
  /**
@@ -315,8 +315,8 @@ declare class Payment {
315
315
  * @returns {Promise<PaymentApplicationModel.GetPaymentLinkResponse>} -
316
316
  * Success response
317
317
  * @name getPaymentLink
318
- * @summary: Get payment link
319
- * @description: Use this API to get a payment link - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
318
+ * @summary: Fetch payment link.
319
+ * @description: Retrieves a generated payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
320
320
  */
321
321
  getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.GetPaymentLinkResponse>;
322
322
  /**
@@ -326,8 +326,8 @@ declare class Payment {
326
326
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
327
327
  * Success response
328
328
  * @name getPaymentModeRoutes
329
- * @summary: Get applicable payment options
330
- * @description: Use this API to get all valid payment options for doing a payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutes/).
329
+ * @summary: Get payment modes.
330
+ * @description: Lists the payment mode options and their routing details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutes/).
331
331
  */
332
332
  getPaymentModeRoutes({ amount, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
333
333
  /**
@@ -339,8 +339,8 @@ declare class Payment {
339
339
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
340
340
  * Success response
341
341
  * @name getPaymentModeRoutesPaymentLink
342
- * @summary: Get applicable payment options for payment link
343
- * @description: Use this API to get all valid payment options for doing a payment through payment link - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
342
+ * @summary: Payment link modes.
343
+ * @description: Lists payment modes available for a given payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentModeRoutesPaymentLink/).
344
344
  */
345
345
  getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
346
346
  /**
@@ -350,8 +350,8 @@ declare class Payment {
350
350
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
351
351
  * Success response
352
352
  * @name getPosPaymentModeRoutes
353
- * @summary: Get applicable payment options for Point-of-Sale (POS)
354
- * @description: Use this API to get all valid payment options for doing a payment in POS. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPosPaymentModeRoutes/).
353
+ * @summary: POS payment modes.
354
+ * @description: Lists payment modes available for Point-of-Sale (POS). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPosPaymentModeRoutes/).
355
355
  */
356
356
  getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
357
357
  /**
@@ -360,8 +360,8 @@ declare class Payment {
360
360
  * @param {import("../ApplicationAPIClient").Options} - Options
361
361
  * @returns {Promise<PaymentApplicationModel.RupifiBannerResponse>} - Success response
362
362
  * @name getRupifiBannerDetails
363
- * @summary: Get CreditLine Offer
364
- * @description: Get CreditLine Offer if user is tentatively approved by rupifi - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getRupifiBannerDetails/).
363
+ * @summary: Rupifi banner info.
364
+ * @description: Retrieve details for displaying the Rupifi payment banner. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getRupifiBannerDetails/).
365
365
  */
366
366
  getRupifiBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.RupifiBannerResponse>;
367
367
  /**
@@ -373,8 +373,8 @@ declare class Payment {
373
373
  * @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
374
374
  * Success response
375
375
  * @name getUserBeneficiariesDetail
376
- * @summary: Lists the beneficiary of a refund
377
- * @description: Use this API to get the details of all active beneficiary added by a user for refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getUserBeneficiariesDetail/).
376
+ * @summary: Beneficiary info.
377
+ * @description: Retrieves details of beneficiaries linked to the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getUserBeneficiariesDetail/).
378
378
  */
379
379
  getUserBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
380
380
  /**
@@ -385,8 +385,8 @@ declare class Payment {
385
385
  * - Success response
386
386
  *
387
387
  * @name initialisePayment
388
- * @summary: Initialize a payment (server-to-server) for UPI and BharatQR
389
- * @description: PUse this API to inititate payment using UPI, BharatQR, wherein the UPI requests are send to the app and QR code is displayed on the screen. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePayment/).
388
+ * @summary: Start payment process.
389
+ * @description: Initializes the payment procedure for an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePayment/).
390
390
  */
391
391
  initialisePayment({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
392
392
  /**
@@ -399,8 +399,8 @@ declare class Payment {
399
399
  * - Success response
400
400
  *
401
401
  * @name initialisePaymentPaymentLink
402
- * @summary: Initialize a payment (server-to-server) for UPI and BharatQR
403
- * @description: Use this API to inititate payment using UPI, BharatQR, wherein the UPI requests are send to the app and QR code is displayed on the screen. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePaymentPaymentLink/).
402
+ * @summary: Initialise link payment.
403
+ * @description: Initializes payment for an order via a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/initialisePaymentPaymentLink/).
404
404
  */
405
405
  initialisePaymentPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
406
406
  /**
@@ -421,8 +421,8 @@ declare class Payment {
421
421
  * - Success response
422
422
  *
423
423
  * @name outstandingOrderDetails
424
- * @summary: API to fetch the outstanding order details
425
- * @description: Use this API to fetch the outstanding order details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
424
+ * @summary: Outstanding orders.
425
+ * @description: Lists details of orders with outstanding payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
426
426
  */
427
427
  outstandingOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OutstandingOrderDetailsResponse>;
428
428
  /**
@@ -432,8 +432,8 @@ declare class Payment {
432
432
  * @returns {Promise<PaymentApplicationModel.PaidOrderDetailsResponse>} -
433
433
  * Success response
434
434
  * @name paidOrderDetails
435
- * @summary: API to fetch the paid order details
436
- * @description: Use this API to fetch the paid order details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/paidOrderDetails/).
435
+ * @summary: Paid orders.
436
+ * @description: Retrieves details of orders that have been paid for. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/paidOrderDetails/).
437
437
  */
438
438
  paidOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.PaidOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaidOrderDetailsResponse>;
439
439
  /**
@@ -443,8 +443,8 @@ declare class Payment {
443
443
  * @returns {Promise<PaymentApplicationModel.PollingPaymentLinkResponse>} -
444
444
  * Success response
445
445
  * @name pollingPaymentLink
446
- * @summary: Used for polling if payment successful or not
447
- * @description: Use this API to poll if payment through payment was successful or not - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/pollingPaymentLink/).
446
+ * @summary: Poll payment link.
447
+ * @description: Polls the status of a payment link for updates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/pollingPaymentLink/).
448
448
  */
449
449
  pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PollingPaymentLinkResponse>;
450
450
  /**
@@ -455,8 +455,8 @@ declare class Payment {
455
455
  * - Success response
456
456
  *
457
457
  * @name redirectToAggregator
458
- * @summary: API to get the redirect url to redirect the user to aggregator's page
459
- * @description: Use this API to get the redirect url to redirect the user to aggregator's page - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/redirectToAggregator/).
458
+ * @summary: Redirect for payment.
459
+ * @description: Redirects the user to the payment aggregator's interface. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/redirectToAggregator/).
460
460
  */
461
461
  redirectToAggregator({ source, aggregator, requestHeaders }?: PaymentApplicationValidator.RedirectToAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RedirectToAggregatorResponse>;
462
462
  /**
@@ -465,8 +465,8 @@ declare class Payment {
465
465
  * @param {import("../ApplicationAPIClient").Options} - Options
466
466
  * @returns {Promise<PaymentApplicationModel.renderHTMLResponse>} - Success response
467
467
  * @name renderHTML
468
- * @summary: Convert base64 string to HTML form
469
- * @description: Use this API to decode base64 html form to plain HTML string. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
468
+ * @summary: Render HTML.
469
+ * @description: Generates HTML for payment-related interfaces. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/renderHTML/).
470
470
  */
471
471
  renderHTML({ body, requestHeaders }?: PaymentApplicationValidator.RenderHTMLParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.renderHTMLResponse>;
472
472
  /**
@@ -477,8 +477,8 @@ declare class Payment {
477
477
  * - Success response
478
478
  *
479
479
  * @name resendOrCancelPayment
480
- * @summary: API to resend and cancel a payment link which was already generated.
481
- * @description: Use this API to perform resend or cancel a payment link based on request payload. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendOrCancelPayment/).
480
+ * @summary: Manage payment.
481
+ * @description: Resends or cancels a pending payment transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendOrCancelPayment/).
482
482
  */
483
483
  resendOrCancelPayment({ body, requestHeaders }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendOrCancelPaymentResponse>;
484
484
  /**
@@ -488,8 +488,8 @@ declare class Payment {
488
488
  * @returns {Promise<PaymentApplicationModel.ResendPaymentLinkResponse>} -
489
489
  * Success response
490
490
  * @name resendPaymentLink
491
- * @summary: Resend payment link
492
- * @description: Use this API to resend a payment link for the customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendPaymentLink/).
491
+ * @summary: Resend link.
492
+ * @description: Resends an existing payment link to the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/resendPaymentLink/).
493
493
  */
494
494
  resendPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendPaymentLinkResponse>;
495
495
  /**
@@ -501,8 +501,8 @@ declare class Payment {
501
501
  * - Success response
502
502
  *
503
503
  * @name updateDefaultBeneficiary
504
- * @summary: Set a default beneficiary for a refund
505
- * @description: Use this API to set a default beneficiary for getting a refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateDefaultBeneficiary/).
504
+ * @summary: Set default beneficiary.
505
+ * @description: Updates the default beneficiary for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/updateDefaultBeneficiary/).
506
506
  */
507
507
  updateDefaultBeneficiary({ body, requestHeaders }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.SetDefaultBeneficiaryResponse>;
508
508
  /**
@@ -511,8 +511,8 @@ declare class Payment {
511
511
  * @param {import("../ApplicationAPIClient").Options} - Options
512
512
  * @returns {Promise<PaymentApplicationModel.ValidateVPAResponse>} - Success response
513
513
  * @name validateVPA
514
- * @summary: API to Validate UPI ID
515
- * @description: API to Validate UPI ID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateVPA/).
514
+ * @summary: Validate VPA.
515
+ * @description: Checks the validity of a Virtual Payment Address (VPA). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateVPA/).
516
516
  */
517
517
  validateVPA({ body, requestHeaders }?: PaymentApplicationValidator.ValidateVPAParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateVPAResponse>;
518
518
  /**
@@ -522,8 +522,8 @@ declare class Payment {
522
522
  * @returns {Promise<PaymentApplicationModel.ChargeCustomerResponse>} -
523
523
  * Success response
524
524
  * @name verifyAndChargePayment
525
- * @summary: Verify and charge payment
526
- * @description: Use this API to verify and check the status of a payment transaction (server-to-server) made through aggregators like Simpl and Mswipe. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyAndChargePayment/).
525
+ * @summary: Verify and charge.
526
+ * @description: Validates and processes a payment transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyAndChargePayment/).
527
527
  */
528
528
  verifyAndChargePayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ChargeCustomerResponse>;
529
529
  /**
@@ -534,8 +534,8 @@ declare class Payment {
534
534
  * @returns {Promise<PaymentApplicationModel.ValidateCustomerResponse>} -
535
535
  * Success response
536
536
  * @name verifyCustomerForPayment
537
- * @summary: Validate customer for payment
538
- * @description: Use this API to check if the customer is eligible to use credit-line facilities such as Simpl Pay Later and Rupifi. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyCustomerForPayment/).
537
+ * @summary: Verify payment customer.
538
+ * @description: Checks the user's validity for proceeding with payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyCustomerForPayment/).
539
539
  */
540
540
  verifyCustomerForPayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateCustomerResponse>;
541
541
  /**
@@ -544,8 +544,8 @@ declare class Payment {
544
544
  * @param {import("../ApplicationAPIClient").Options} - Options
545
545
  * @returns {Promise<PaymentApplicationModel.IfscCodeResponse>} - Success response
546
546
  * @name verifyIfscCode
547
- * @summary: Verify IFSC Code
548
- * @description: Use this API to check whether the 11-digit IFSC code is valid and to fetch the bank details for refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
547
+ * @summary: Verify IFSC.
548
+ * @description: Checks the validity of an IFSC code for bank transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyIfscCode/).
549
549
  */
550
550
  verifyIfscCode({ ifscCode, requestHeaders }?: PaymentApplicationValidator.VerifyIfscCodeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.IfscCodeResponse>;
551
551
  /**
@@ -558,8 +558,8 @@ declare class Payment {
558
558
  * - Success response
559
559
  *
560
560
  * @name verifyOtpAndAddBeneficiaryForBank
561
- * @summary: Verify the beneficiary details using OTP
562
- * @description: Use this API to perform an OTP validation before saving the beneficiary details added for a refund. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForBank/).
561
+ * @summary: Verify OTP for bank.
562
+ * @description: Confirms OTP and adds a bank beneficiary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForBank/).
563
563
  */
564
564
  verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationResponse>;
565
565
  /**
@@ -570,20 +570,20 @@ declare class Payment {
570
570
  * @param {import("../ApplicationAPIClient").Options} - Options
571
571
  * @returns {Promise<PaymentApplicationModel.WalletOtpResponse>} - Success response
572
572
  * @name verifyOtpAndAddBeneficiaryForWallet
573
- * @summary: Send OTP on adding a wallet beneficiary
574
- * @description: Use this API to send an OTP while adding a wallet beneficiary by mobile no. verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForWallet/).
573
+ * @summary: Verify OTP for wallet.
574
+ * @description: Confirms OTP and adds a wallet beneficiary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/verifyOtpAndAddBeneficiaryForWallet/).
575
575
  */
576
576
  verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletOtpResponse>;
577
577
  /**
578
- * @param {PaymentApplicationValidator.WalletLinkInitiateParam} arg - Arg object.
578
+ * @param {PaymentApplicationValidator.WalletLinkInitateParam} arg - Arg object.
579
579
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
580
580
  * @param {import("../ApplicationAPIClient").Options} - Options
581
581
  * @returns {Promise<PaymentApplicationModel.WalletResponseSchema>} - Success response
582
- * @name walletLinkInitiate
582
+ * @name walletLinkInitate
583
583
  * @summary: Initiate linking of wallet
584
- * @description: It will initiate linking of wallet for the aggregator. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/walletLinkInitiate/).
584
+ * @description: It will initiate linking of wallet for the aggregator. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/walletLinkInitate/).
585
585
  */
586
- walletLinkInitiate({ body, requestHeaders }?: PaymentApplicationValidator.WalletLinkInitiateParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletResponseSchema>;
586
+ walletLinkInitate({ body, requestHeaders }?: PaymentApplicationValidator.WalletLinkInitateParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletResponseSchema>;
587
587
  }
588
588
  import PaymentApplicationValidator = require("./PaymentApplicationValidator");
589
589
  import PaymentApplicationModel = require("./PaymentApplicationModel");