@gofynd/fdk-client-javascript 1.2.0 → 1.3.1-beta.1

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 (262) hide show
  1. package/README.md +44 -7
  2. package/package.json +1 -2
  3. package/sdk/application/ApplicationAPIClient.d.ts +3 -3
  4. package/sdk/application/ApplicationAPIClient.js +6 -4
  5. package/sdk/application/ApplicationClient.d.ts +2 -3
  6. package/sdk/application/ApplicationClient.js +1 -45
  7. package/sdk/application/ApplicationConfig.d.ts +46 -6
  8. package/sdk/application/ApplicationConfig.js +15 -16
  9. package/sdk/application/Cart/CartApplicationClient.d.ts +61 -33
  10. package/sdk/application/Cart/CartApplicationClient.js +225 -134
  11. package/sdk/application/Cart/CartApplicationModel.d.ts +6 -4
  12. package/sdk/application/Cart/CartApplicationModel.js +6 -4
  13. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +61 -30
  14. package/sdk/application/Catalog/CatalogApplicationClient.js +234 -146
  15. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +115 -13
  16. package/sdk/application/Catalog/CatalogApplicationModel.js +77 -12
  17. package/sdk/application/Common/CommonApplicationClient.d.ts +5 -3
  18. package/sdk/application/Common/CommonApplicationClient.js +13 -11
  19. package/sdk/application/Common/CommonApplicationModel.d.ts +3 -83
  20. package/sdk/application/Common/CommonApplicationModel.js +2 -58
  21. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +9 -3
  22. package/sdk/application/Communication/CommunicationApplicationClient.js +25 -13
  23. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +1 -34
  24. package/sdk/application/Communication/CommunicationApplicationModel.js +0 -36
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +46 -16
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +144 -68
  27. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +1 -219
  28. package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -226
  29. package/sdk/application/Content/ContentApplicationClient.d.ts +49 -21
  30. package/sdk/application/Content/ContentApplicationClient.js +159 -80
  31. package/sdk/application/Content/ContentApplicationModel.d.ts +5 -622
  32. package/sdk/application/Content/ContentApplicationModel.js +11 -763
  33. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -3
  34. package/sdk/application/FileStorage/FileStorageApplicationClient.js +20 -14
  35. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +1 -152
  36. package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -180
  37. package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -7
  38. package/sdk/application/Lead/LeadApplicationClient.js +50 -31
  39. package/sdk/application/Lead/LeadApplicationModel.d.ts +22 -741
  40. package/sdk/application/Lead/LeadApplicationModel.js +21 -481
  41. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +11 -5
  42. package/sdk/application/Logistic/LogisticApplicationClient.js +41 -20
  43. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -12
  44. package/sdk/application/Order/OrderApplicationClient.js +88 -56
  45. package/sdk/application/Payment/PaymentApplicationClient.d.ts +91 -42
  46. package/sdk/application/Payment/PaymentApplicationClient.js +293 -194
  47. package/sdk/application/Payment/PaymentApplicationModel.d.ts +36 -36
  48. package/sdk/application/Payment/PaymentApplicationModel.js +36 -36
  49. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +59 -32
  50. package/sdk/application/PosCart/PosCartApplicationClient.js +214 -130
  51. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +2 -2
  52. package/sdk/application/PosCart/PosCartApplicationModel.js +2 -2
  53. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +16 -7
  54. package/sdk/application/Rewards/RewardsApplicationClient.js +56 -29
  55. package/sdk/application/Share/ShareApplicationClient.d.ts +15 -7
  56. package/sdk/application/Share/ShareApplicationClient.js +51 -31
  57. package/sdk/application/Share/ShareApplicationModel.d.ts +1 -33
  58. package/sdk/application/Share/ShareApplicationModel.js +0 -38
  59. package/sdk/application/Theme/ThemeApplicationClient.d.ts +9 -4
  60. package/sdk/application/Theme/ThemeApplicationClient.js +35 -18
  61. package/sdk/application/Theme/ThemeApplicationModel.d.ts +982 -312
  62. package/sdk/application/Theme/ThemeApplicationModel.js +621 -284
  63. package/sdk/application/User/UserApplicationClient.d.ts +74 -35
  64. package/sdk/application/User/UserApplicationClient.js +252 -161
  65. package/sdk/application/User/UserApplicationModel.d.ts +3 -401
  66. package/sdk/application/User/UserApplicationModel.js +2 -490
  67. package/sdk/common/AxiosHelper.js +1 -2
  68. package/sdk/common/FDKError.d.ts +3 -0
  69. package/sdk/common/FDKError.js +8 -0
  70. package/sdk/common/utils.d.ts +3 -0
  71. package/sdk/common/utils.js +29 -0
  72. package/sdk/partner/PartnerAPIClient.d.ts +5 -4
  73. package/sdk/partner/PartnerAPIClient.js +7 -4
  74. package/sdk/partner/PartnerClient.d.ts +2 -0
  75. package/sdk/partner/PartnerClient.js +3 -0
  76. package/sdk/partner/Theme/ThemePartnerClient.d.ts +299 -0
  77. package/sdk/partner/Theme/ThemePartnerClient.js +768 -0
  78. package/sdk/partner/Theme/ThemePartnerModel.d.ts +1706 -0
  79. package/sdk/partner/Theme/ThemePartnerModel.js +1409 -0
  80. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +22 -0
  81. package/sdk/partner/Theme/ThemePartnerValidator.js +157 -0
  82. package/sdk/partner/index.d.ts +3 -1
  83. package/sdk/partner/index.js +3 -1
  84. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  85. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +38 -16
  86. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +1 -13
  87. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +0 -12
  88. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +10 -0
  89. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +4 -0
  90. package/sdk/platform/Billing/BillingPlatformClient.d.ts +59 -14
  91. package/sdk/platform/Billing/BillingPlatformClient.js +315 -64
  92. package/sdk/platform/Billing/BillingPlatformModel.d.ts +56 -196
  93. package/sdk/platform/Billing/BillingPlatformModel.js +63 -217
  94. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +23 -1
  95. package/sdk/platform/Billing/BillingPlatformValidator.js +31 -0
  96. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +124 -63
  97. package/sdk/platform/Cart/CartPlatformApplicationClient.js +431 -265
  98. package/sdk/platform/Cart/CartPlatformModel.d.ts +253 -53
  99. package/sdk/platform/Cart/CartPlatformModel.js +104 -54
  100. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +120 -53
  101. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +398 -247
  102. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +155 -78
  103. package/sdk/platform/Catalog/CatalogPlatformClient.js +561 -355
  104. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +10 -12
  105. package/sdk/platform/Catalog/CatalogPlatformModel.js +10 -12
  106. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +30 -0
  107. package/sdk/platform/Catalog/CatalogPlatformValidator.js +13 -0
  108. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -3
  109. package/sdk/platform/Common/CommonPlatformClient.js +13 -11
  110. package/sdk/platform/Common/CommonPlatformModel.d.ts +39 -64
  111. package/sdk/platform/Common/CommonPlatformModel.js +23 -57
  112. package/sdk/platform/Common/CommonPlatformValidator.d.ts +5 -10
  113. package/sdk/platform/Common/CommonPlatformValidator.js +3 -4
  114. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +370 -120
  115. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +2328 -888
  116. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +143 -24
  117. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +179 -15
  118. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  119. package/sdk/platform/Communication/CommunicationPlatformClient.js +6 -5
  120. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +386 -308
  121. package/sdk/platform/Communication/CommunicationPlatformModel.js +415 -355
  122. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +38 -13
  123. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +171 -57
  124. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +53 -1
  125. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +54 -0
  126. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +5 -1
  127. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +7 -0
  128. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +96 -29
  129. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +311 -126
  130. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +5 -1
  131. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +7 -0
  132. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  133. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +121 -86
  134. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +13 -180
  135. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +5 -113
  136. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +162 -70
  137. package/sdk/platform/Content/ContentPlatformApplicationClient.js +528 -309
  138. package/sdk/platform/Content/ContentPlatformModel.d.ts +9 -198
  139. package/sdk/platform/Content/ContentPlatformModel.js +8 -231
  140. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +48 -11
  141. package/sdk/platform/Discount/DiscountPlatformClient.js +142 -48
  142. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +40 -1
  143. package/sdk/platform/Discount/DiscountPlatformModel.js +27 -0
  144. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +84 -18
  145. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +486 -53
  146. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +71 -7
  147. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +81 -5
  148. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +13 -18
  149. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +58 -65
  150. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +198 -71
  151. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +212 -64
  152. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +18 -10
  153. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +11 -6
  154. package/sdk/platform/Finance/FinancePlatformClient.d.ts +177 -40
  155. package/sdk/platform/Finance/FinancePlatformClient.js +1028 -132
  156. package/sdk/platform/Finance/FinancePlatformModel.d.ts +670 -22
  157. package/sdk/platform/Finance/FinancePlatformModel.js +809 -23
  158. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +111 -1
  159. package/sdk/platform/Finance/FinancePlatformValidator.js +134 -0
  160. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +24 -12
  161. package/sdk/platform/Inventory/InventoryPlatformClient.js +94 -52
  162. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +27 -13
  163. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +101 -55
  164. package/sdk/platform/Lead/LeadPlatformClient.d.ts +50 -39
  165. package/sdk/platform/Lead/LeadPlatformClient.js +171 -112
  166. package/sdk/platform/Lead/LeadPlatformModel.d.ts +32 -390
  167. package/sdk/platform/Lead/LeadPlatformModel.js +31 -214
  168. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +33 -33
  169. package/sdk/platform/Lead/LeadPlatformValidator.js +23 -23
  170. package/sdk/platform/OAuthClient.js +6 -2
  171. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -2
  172. package/sdk/platform/Order/OrderPlatformApplicationClient.js +12 -10
  173. package/sdk/platform/Order/OrderPlatformClient.d.ts +165 -71
  174. package/sdk/platform/Order/OrderPlatformClient.js +738 -205
  175. package/sdk/platform/Order/OrderPlatformModel.d.ts +261 -3
  176. package/sdk/platform/Order/OrderPlatformModel.js +225 -2
  177. package/sdk/platform/Order/OrderPlatformValidator.d.ts +104 -3
  178. package/sdk/platform/Order/OrderPlatformValidator.js +85 -2
  179. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -22
  180. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +12 -159
  181. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +1 -30
  182. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +0 -26
  183. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -690
  184. package/sdk/platform/Partner/PartnerPlatformModel.js +0 -809
  185. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +167 -32
  186. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +793 -145
  187. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +91 -1
  188. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +91 -0
  189. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -10
  190. package/sdk/platform/Payment/PaymentPlatformClient.js +68 -47
  191. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +549 -7
  192. package/sdk/platform/Payment/PaymentPlatformModel.js +305 -6
  193. package/sdk/platform/PlatformAPIClient.d.ts +3 -3
  194. package/sdk/platform/PlatformAPIClient.js +2 -2
  195. package/sdk/platform/PlatformClient.d.ts +2 -2
  196. package/sdk/platform/PlatformClient.js +4 -4
  197. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +28 -12
  198. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +90 -53
  199. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +1 -12
  200. package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -14
  201. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +62 -26
  202. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +210 -93
  203. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +20 -11
  204. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +23 -11
  205. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +36 -18
  206. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +142 -78
  207. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +12 -3
  208. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +14 -2
  209. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -26
  210. package/sdk/platform/Share/SharePlatformApplicationClient.js +36 -67
  211. package/sdk/platform/Share/SharePlatformModel.d.ts +4 -4
  212. package/sdk/platform/Share/SharePlatformModel.js +4 -4
  213. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +127 -57
  214. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +564 -189
  215. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +63 -26
  216. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +62 -22
  217. package/sdk/platform/Theme/ThemePlatformClient.d.ts +37 -0
  218. package/sdk/platform/Theme/ThemePlatformClient.js +235 -0
  219. package/sdk/platform/Theme/ThemePlatformModel.d.ts +1167 -261
  220. package/sdk/platform/Theme/ThemePlatformModel.js +801 -244
  221. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +32 -0
  222. package/sdk/platform/Theme/ThemePlatformValidator.js +38 -0
  223. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +35 -17
  224. package/sdk/platform/User/UserPlatformApplicationClient.js +132 -73
  225. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +7 -0
  226. package/sdk/platform/User/UserPlatformApplicationValidator.js +3 -0
  227. package/sdk/platform/User/UserPlatformModel.d.ts +1 -738
  228. package/sdk/platform/User/UserPlatformModel.js +3 -899
  229. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +120 -7
  230. package/sdk/platform/Webhook/WebhookPlatformClient.js +799 -41
  231. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +476 -86
  232. package/sdk/platform/Webhook/WebhookPlatformModel.js +388 -89
  233. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +90 -7
  234. package/sdk/platform/Webhook/WebhookPlatformValidator.js +113 -3
  235. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -3
  236. package/sdk/public/Configuration/ConfigurationPublicClient.js +13 -11
  237. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +3 -106
  238. package/sdk/public/Configuration/ConfigurationPublicModel.js +2 -59
  239. package/sdk/public/Inventory/InventoryPublicClient.d.ts +12 -6
  240. package/sdk/public/Inventory/InventoryPublicClient.js +42 -27
  241. package/sdk/public/Partner/PartnerPublicClient.d.ts +22 -0
  242. package/sdk/public/Partner/PartnerPublicClient.js +110 -0
  243. package/sdk/public/Partner/PartnerPublicModel.d.ts +240 -0
  244. package/sdk/public/Partner/PartnerPublicModel.js +280 -0
  245. package/sdk/public/Partner/PartnerPublicValidator.d.ts +18 -0
  246. package/sdk/public/Partner/PartnerPublicValidator.js +19 -0
  247. package/sdk/public/PublicAPIClient.d.ts +14 -1
  248. package/sdk/public/PublicAPIClient.js +7 -1
  249. package/sdk/public/PublicClient.d.ts +2 -0
  250. package/sdk/public/PublicClient.js +4 -0
  251. package/sdk/public/Webhook/WebhookPublicClient.d.ts +5 -2
  252. package/sdk/public/Webhook/WebhookPublicClient.js +15 -9
  253. package/sdk/public/Webhook/WebhookPublicModel.d.ts +1 -191
  254. package/sdk/public/Webhook/WebhookPublicModel.js +0 -229
  255. package/sdk/public/index.d.ts +1 -0
  256. package/sdk/public/index.js +2 -0
  257. package/sdk/application/ApplicationModels.d.ts +0 -48
  258. package/sdk/application/ApplicationModels.js +0 -38
  259. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +0 -106
  260. package/sdk/platform/Partner/PartnerPlatformClient.js +0 -878
  261. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +0 -208
  262. package/sdk/platform/Partner/PartnerPlatformValidator.js +0 -169
@@ -50,6 +50,7 @@ declare class Payment {
50
50
  updateUrls(urls: any): void;
51
51
  /**
52
52
  * @param {PaymentApplicationValidator.AddBeneficiaryDetailsParam} arg - Arg object.
53
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
53
54
  * @param {import("../ApplicationAPIClient").Options} - Options
54
55
  * @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
55
56
  * Success response
@@ -57,11 +58,12 @@ declare class Payment {
57
58
  * @summary: Save bank details for cancelled/returned order
58
59
  * @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/).
59
60
  */
60
- addBeneficiaryDetails({ body }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.RefundAccountResponse>;
61
+ addBeneficiaryDetails({ body, requestHeaders }?: PaymentApplicationValidator.AddBeneficiaryDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
61
62
  /**
62
63
  * @param {PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam} arg
63
64
  * - Arg object.
64
65
  *
66
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
65
67
  * @param {import("../ApplicationAPIClient").Options} - Options
66
68
  * @returns {Promise<PaymentApplicationModel.RefundAccountResponse>} -
67
69
  * Success response
@@ -69,18 +71,20 @@ declare class Payment {
69
71
  * @summary: Save bank details for cancelled/returned order
70
72
  * @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/).
71
73
  */
72
- addRefundBankAccountUsingOTP({ body }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.RefundAccountResponse>;
74
+ addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RefundAccountResponse>;
73
75
  /**
74
76
  * @param {PaymentApplicationValidator.AttachCardToCustomerParam} arg - Arg object.
77
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
75
78
  * @param {import("../ApplicationAPIClient").Options} - Options
76
79
  * @returns {Promise<PaymentApplicationModel.AttachCardsResponse>} - Success response
77
80
  * @name attachCardToCustomer
78
81
  * @summary: Attach a saved card to customer.
79
82
  * @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/).
80
83
  */
81
- attachCardToCustomer({ body }?: PaymentApplicationValidator.AttachCardToCustomerParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.AttachCardsResponse>;
84
+ attachCardToCustomer({ body, requestHeaders }?: PaymentApplicationValidator.AttachCardToCustomerParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AttachCardsResponse>;
82
85
  /**
83
86
  * @param {PaymentApplicationValidator.CancelPaymentLinkParam} arg - Arg object.
87
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
84
88
  * @param {import("../ApplicationAPIClient").Options} - Options
85
89
  * @returns {Promise<PaymentApplicationModel.CancelPaymentLinkResponse>} -
86
90
  * Success response
@@ -88,20 +92,22 @@ declare class Payment {
88
92
  * @summary: Cancel payment link
89
93
  * @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/).
90
94
  */
91
- cancelPaymentLink({ body }?: PaymentApplicationValidator.CancelPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CancelPaymentLinkResponse>;
95
+ cancelPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CancelPaymentLinkResponse>;
92
96
  /**
93
97
  * @param {PaymentApplicationValidator.CardDetailsParam} arg - Arg object.
98
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
94
99
  * @param {import("../ApplicationAPIClient").Options} - Options
95
100
  * @returns {Promise<PaymentApplicationModel.CardDetailsResponse>} - Success response
96
101
  * @name cardDetails
97
102
  * @summary: API to get Card info from PG
98
103
  * @description: API to get Card info from PG - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/cardDetails/).
99
104
  */
100
- cardDetails({ cardInfo, aggregator }?: PaymentApplicationValidator.CardDetailsParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CardDetailsResponse>;
105
+ cardDetails({ cardInfo, aggregator, requestHeaders }?: PaymentApplicationValidator.CardDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CardDetailsResponse>;
101
106
  /**
102
107
  * @param {PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam} arg
103
108
  * - Arg object.
104
109
  *
110
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
105
111
  * @param {import("../ApplicationAPIClient").Options} - Options
106
112
  * @returns {Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>}
107
113
  * - Success response
@@ -110,11 +116,12 @@ declare class Payment {
110
116
  * @summary: Performs continuous polling to check status of payment on the server
111
117
  * @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/).
112
118
  */
113
- checkAndUpdatePaymentStatus({ body }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
119
+ checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
114
120
  /**
115
121
  * @param {PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam} arg
116
122
  * - Arg object.
117
123
  *
124
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
118
125
  * @param {import("../ApplicationAPIClient").Options} - Options
119
126
  * @returns {Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>}
120
127
  * - Success response
@@ -123,20 +130,22 @@ declare class Payment {
123
130
  * @summary: Performs continuous polling to check status of payment on the server
124
131
  * @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/).
125
132
  */
126
- checkAndUpdatePaymentStatusPaymentLink({ body }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
133
+ checkAndUpdatePaymentStatusPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CheckAndUpdatePaymentStatusPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentStatusUpdateResponse>;
127
134
  /**
128
135
  * @param {PaymentApplicationValidator.CheckCreditParam} arg - Arg object.
136
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
129
137
  * @param {import("../ApplicationAPIClient").Options} - Options
130
138
  * @returns {Promise<PaymentApplicationModel.CheckCreditResponse>} - Success response
131
139
  * @name checkCredit
132
140
  * @summary: API to fetch the customer credit summary
133
141
  * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/checkCredit/).
134
142
  */
135
- checkCredit({ aggregator }?: PaymentApplicationValidator.CheckCreditParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CheckCreditResponse>;
143
+ checkCredit({ aggregator, requestHeaders }?: PaymentApplicationValidator.CheckCreditParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CheckCreditResponse>;
136
144
  /**
137
145
  * @param {PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam} arg
138
146
  * - Arg object.
139
147
  *
148
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
140
149
  * @param {import("../ApplicationAPIClient").Options} - Options
141
150
  * @returns {Promise<PaymentApplicationModel.CreateOrderUserResponse>} -
142
151
  * Success response
@@ -144,9 +153,10 @@ declare class Payment {
144
153
  * @summary: Create Order user
145
154
  * @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/).
146
155
  */
147
- createOrderHandlerPaymentLink({ body }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CreateOrderUserResponse>;
156
+ createOrderHandlerPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreateOrderHandlerPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreateOrderUserResponse>;
148
157
  /**
149
158
  * @param {PaymentApplicationValidator.CreatePaymentLinkParam} arg - Arg object.
159
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
150
160
  * @param {import("../ApplicationAPIClient").Options} - Options
151
161
  * @returns {Promise<PaymentApplicationModel.CreatePaymentLinkResponse>} -
152
162
  * Success response
@@ -154,9 +164,10 @@ declare class Payment {
154
164
  * @summary: Create payment link
155
165
  * @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/).
156
166
  */
157
- createPaymentLink({ body }?: PaymentApplicationValidator.CreatePaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CreatePaymentLinkResponse>;
167
+ createPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CreatePaymentLinkResponse>;
158
168
  /**
159
169
  * @param {PaymentApplicationValidator.CustomerCreditSummaryParam} arg - Arg object.
170
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
160
171
  * @param {import("../ApplicationAPIClient").Options} - Options
161
172
  * @returns {Promise<PaymentApplicationModel.CustomerCreditSummaryResponse>}
162
173
  * - Success response
@@ -165,9 +176,10 @@ declare class Payment {
165
176
  * @summary: API to fetch the customer credit summary
166
177
  * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerCreditSummary/).
167
178
  */
168
- customerCreditSummary({ aggregator }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CustomerCreditSummaryResponse>;
179
+ customerCreditSummary({ aggregator, requestHeaders }?: PaymentApplicationValidator.CustomerCreditSummaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerCreditSummaryResponse>;
169
180
  /**
170
181
  * @param {PaymentApplicationValidator.CustomerOnboardParam} arg - Arg object.
182
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
171
183
  * @param {import("../ApplicationAPIClient").Options} - Options
172
184
  * @returns {Promise<PaymentApplicationModel.CustomerOnboardingResponse>} -
173
185
  * Success response
@@ -175,20 +187,22 @@ declare class Payment {
175
187
  * @summary: API to fetch the customer credit summary
176
188
  * @description: Use this API to fetch the customer credit summary. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/customerOnboard/).
177
189
  */
178
- customerOnboard({ body }?: PaymentApplicationValidator.CustomerOnboardParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.CustomerOnboardingResponse>;
190
+ customerOnboard({ body, requestHeaders }?: PaymentApplicationValidator.CustomerOnboardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.CustomerOnboardingResponse>;
179
191
  /**
180
192
  * @param {PaymentApplicationValidator.DeleteUserCardParam} arg - Arg object.
193
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
181
194
  * @param {import("../ApplicationAPIClient").Options} - Options
182
195
  * @returns {Promise<PaymentApplicationModel.DeleteCardsResponse>} - Success response
183
196
  * @name deleteUserCard
184
197
  * @summary: Delete a card
185
198
  * @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/).
186
199
  */
187
- deleteUserCard({ body }?: PaymentApplicationValidator.DeleteUserCardParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.DeleteCardsResponse>;
200
+ deleteUserCard({ body, requestHeaders }?: PaymentApplicationValidator.DeleteUserCardParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.DeleteCardsResponse>;
188
201
  /**
189
202
  * @param {PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam} arg
190
203
  * - Arg object.
191
204
  *
205
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
192
206
  * @param {import("../ApplicationAPIClient").Options} - Options
193
207
  * @returns {Promise<PaymentApplicationModel.UpdateRefundTransferModeResponse>}
194
208
  * - Success response
@@ -197,9 +211,10 @@ declare class Payment {
197
211
  * @summary: Enable/Disable a mode for transferring a refund
198
212
  * @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/).
199
213
  */
200
- enableOrDisableRefundTransferMode({ body }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.UpdateRefundTransferModeResponse>;
214
+ enableOrDisableRefundTransferMode({ body, requestHeaders }?: PaymentApplicationValidator.EnableOrDisableRefundTransferModeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.UpdateRefundTransferModeResponse>;
201
215
  /**
202
216
  * @param {PaymentApplicationValidator.GetActiveCardAggregatorParam} arg - Arg object.
217
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
203
218
  * @param {import("../ApplicationAPIClient").Options} - Options
204
219
  * @returns {Promise<PaymentApplicationModel.ActiveCardPaymentGatewayResponse>}
205
220
  * - Success response
@@ -208,26 +223,32 @@ declare class Payment {
208
223
  * @summary: Fetch active payment gateway for card payments
209
224
  * @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/).
210
225
  */
211
- getActiveCardAggregator({ refresh }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ActiveCardPaymentGatewayResponse>;
226
+ getActiveCardAggregator({ refresh, requestHeaders }?: PaymentApplicationValidator.GetActiveCardAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ActiveCardPaymentGatewayResponse>;
212
227
  /**
228
+ * @param {PaymentApplicationValidator.GetActiveRefundTransferModesParam} arg
229
+ * - Arg object.
230
+ *
231
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
213
232
  * @param {import("../ApplicationAPIClient").Options} - Options
214
233
  * @returns {Promise<PaymentApplicationModel.TransferModeResponse>} - Success response
215
234
  * @name getActiveRefundTransferModes
216
235
  * @summary: Lists the mode of refund
217
236
  * @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/).
218
237
  */
219
- getActiveRefundTransferModes({ headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.TransferModeResponse>;
238
+ getActiveRefundTransferModes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.TransferModeResponse>;
220
239
  /**
221
240
  * @param {PaymentApplicationValidator.GetActiveUserCardsParam} arg - Arg object.
241
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
222
242
  * @param {import("../ApplicationAPIClient").Options} - Options
223
243
  * @returns {Promise<PaymentApplicationModel.ListCardsResponse>} - Success response
224
244
  * @name getActiveUserCards
225
245
  * @summary: Fetch the list of cards saved by the user
226
246
  * @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/).
227
247
  */
228
- getActiveUserCards({ forceRefresh }?: PaymentApplicationValidator.GetActiveUserCardsParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ListCardsResponse>;
248
+ getActiveUserCards({ forceRefresh, requestHeaders }?: PaymentApplicationValidator.GetActiveUserCardsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ListCardsResponse>;
229
249
  /**
230
250
  * @param {PaymentApplicationValidator.GetAggregatorsConfigParam} arg - Arg object.
251
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
231
252
  * @param {import("../ApplicationAPIClient").Options} - Options
232
253
  * @returns {Promise<PaymentApplicationModel.AggregatorsConfigDetailResponse>}
233
254
  * - Success response
@@ -236,8 +257,12 @@ declare class Payment {
236
257
  * @summary: Get payment gateway keys
237
258
  * @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/).
238
259
  */
239
- getAggregatorsConfig({ xApiToken, refresh }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.AggregatorsConfigDetailResponse>;
260
+ getAggregatorsConfig({ xApiToken, refresh, requestHeaders }?: PaymentApplicationValidator.GetAggregatorsConfigParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AggregatorsConfigDetailResponse>;
240
261
  /**
262
+ * @param {PaymentApplicationValidator.GetEpaylaterBannerDetailsParam} arg
263
+ * - Arg object.
264
+ *
265
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
241
266
  * @param {import("../ApplicationAPIClient").Options} - Options
242
267
  * @returns {Promise<PaymentApplicationModel.EpaylaterBannerResponse>} -
243
268
  * Success response
@@ -245,11 +270,12 @@ declare class Payment {
245
270
  * @summary: Get Epaylater Enabled
246
271
  * @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/).
247
272
  */
248
- getEpaylaterBannerDetails({ headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.EpaylaterBannerResponse>;
273
+ getEpaylaterBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.EpaylaterBannerResponse>;
249
274
  /**
250
275
  * @param {PaymentApplicationValidator.GetOrderBeneficiariesDetailParam} arg
251
276
  * - Arg object.
252
277
  *
278
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
253
279
  * @param {import("../ApplicationAPIClient").Options} - Options
254
280
  * @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
255
281
  * Success response
@@ -257,9 +283,10 @@ declare class Payment {
257
283
  * @summary: Lists the beneficiary of a refund
258
284
  * @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/).
259
285
  */
260
- getOrderBeneficiariesDetail({ orderId }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
286
+ getOrderBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetOrderBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
261
287
  /**
262
288
  * @param {PaymentApplicationValidator.GetPaymentLinkParam} arg - Arg object.
289
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
263
290
  * @param {import("../ApplicationAPIClient").Options} - Options
264
291
  * @returns {Promise<PaymentApplicationModel.GetPaymentLinkResponse>} -
265
292
  * Success response
@@ -267,9 +294,10 @@ declare class Payment {
267
294
  * @summary: Get payment link
268
295
  * @description: Use this API to get a payment link - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/getPaymentLink/).
269
296
  */
270
- getPaymentLink({ paymentLinkId }?: PaymentApplicationValidator.GetPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.GetPaymentLinkResponse>;
297
+ getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.GetPaymentLinkResponse>;
271
298
  /**
272
299
  * @param {PaymentApplicationValidator.GetPaymentModeRoutesParam} arg - Arg object.
300
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
273
301
  * @param {import("../ApplicationAPIClient").Options} - Options
274
302
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
275
303
  * Success response
@@ -277,11 +305,12 @@ declare class Payment {
277
305
  * @summary: Get applicable payment options
278
306
  * @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/).
279
307
  */
280
- getPaymentModeRoutes({ amount, cartId, pincode, checkoutMode, refresh, cardReference, userDetails, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
308
+ getPaymentModeRoutes({ amount, cartId, pincode, checkoutMode, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
281
309
  /**
282
310
  * @param {PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam} arg
283
311
  * - Arg object.
284
312
  *
313
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
285
314
  * @param {import("../ApplicationAPIClient").Options} - Options
286
315
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
287
316
  * Success response
@@ -289,9 +318,10 @@ declare class Payment {
289
318
  * @summary: Get applicable payment options for payment link
290
319
  * @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/).
291
320
  */
292
- getPaymentModeRoutesPaymentLink({ paymentLinkId }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
321
+ getPaymentModeRoutesPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.GetPaymentModeRoutesPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
293
322
  /**
294
323
  * @param {PaymentApplicationValidator.GetPosPaymentModeRoutesParam} arg - Arg object.
324
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
295
325
  * @param {import("../ApplicationAPIClient").Options} - Options
296
326
  * @returns {Promise<PaymentApplicationModel.PaymentModeRouteResponse>} -
297
327
  * Success response
@@ -299,19 +329,22 @@ declare class Payment {
299
329
  * @summary: Get applicable payment options for Point-of-Sale (POS)
300
330
  * @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/).
301
331
  */
302
- getPosPaymentModeRoutes({ amount, cartId, pincode, checkoutMode, orderType, refresh, cardReference, userDetails, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
332
+ getPosPaymentModeRoutes({ amount, cartId, pincode, checkoutMode, orderType, refresh, cardReference, userDetails, requestHeaders, }?: PaymentApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentModeRouteResponse>;
303
333
  /**
334
+ * @param {PaymentApplicationValidator.GetRupifiBannerDetailsParam} arg - Arg object.
335
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
304
336
  * @param {import("../ApplicationAPIClient").Options} - Options
305
337
  * @returns {Promise<PaymentApplicationModel.RupifiBannerResponse>} - Success response
306
338
  * @name getRupifiBannerDetails
307
339
  * @summary: Get CreditLine Offer
308
340
  * @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/).
309
341
  */
310
- getRupifiBannerDetails({ headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.RupifiBannerResponse>;
342
+ getRupifiBannerDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentApplicationModel.RupifiBannerResponse>;
311
343
  /**
312
344
  * @param {PaymentApplicationValidator.GetUserBeneficiariesDetailParam} arg
313
345
  * - Arg object.
314
346
  *
347
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
315
348
  * @param {import("../ApplicationAPIClient").Options} - Options
316
349
  * @returns {Promise<PaymentApplicationModel.OrderBeneficiaryResponse>} -
317
350
  * Success response
@@ -319,9 +352,10 @@ declare class Payment {
319
352
  * @summary: Lists the beneficiary of a refund
320
353
  * @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/).
321
354
  */
322
- getUserBeneficiariesDetail({ orderId }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
355
+ getUserBeneficiariesDetail({ orderId, requestHeaders }?: PaymentApplicationValidator.GetUserBeneficiariesDetailParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OrderBeneficiaryResponse>;
323
356
  /**
324
357
  * @param {PaymentApplicationValidator.InitialisePaymentParam} arg - Arg object.
358
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
325
359
  * @param {import("../ApplicationAPIClient").Options} - Options
326
360
  * @returns {Promise<PaymentApplicationModel.PaymentInitializationResponse>}
327
361
  * - Success response
@@ -330,11 +364,12 @@ declare class Payment {
330
364
  * @summary: Initialize a payment (server-to-server) for UPI and BharatQR
331
365
  * @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/).
332
366
  */
333
- initialisePayment({ body }?: PaymentApplicationValidator.InitialisePaymentParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
367
+ initialisePayment({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
334
368
  /**
335
369
  * @param {PaymentApplicationValidator.InitialisePaymentPaymentLinkParam} arg
336
370
  * - Arg object.
337
371
  *
372
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
338
373
  * @param {import("../ApplicationAPIClient").Options} - Options
339
374
  * @returns {Promise<PaymentApplicationModel.PaymentInitializationResponse>}
340
375
  * - Success response
@@ -343,9 +378,10 @@ declare class Payment {
343
378
  * @summary: Initialize a payment (server-to-server) for UPI and BharatQR
344
379
  * @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/).
345
380
  */
346
- initialisePaymentPaymentLink({ body }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
381
+ initialisePaymentPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.InitialisePaymentPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaymentInitializationResponse>;
347
382
  /**
348
383
  * @param {PaymentApplicationValidator.OutstandingOrderDetailsParam} arg - Arg object.
384
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
349
385
  * @param {import("../ApplicationAPIClient").Options} - Options
350
386
  * @returns {Promise<PaymentApplicationModel.OutstandingOrderDetailsResponse>}
351
387
  * - Success response
@@ -354,9 +390,10 @@ declare class Payment {
354
390
  * @summary: API to fetch the outstanding order details
355
391
  * @description: Use this API to fetch the outstanding order details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/outstandingOrderDetails/).
356
392
  */
357
- outstandingOrderDetails({ aggregator }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.OutstandingOrderDetailsResponse>;
393
+ outstandingOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.OutstandingOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.OutstandingOrderDetailsResponse>;
358
394
  /**
359
395
  * @param {PaymentApplicationValidator.PaidOrderDetailsParam} arg - Arg object.
396
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
360
397
  * @param {import("../ApplicationAPIClient").Options} - Options
361
398
  * @returns {Promise<PaymentApplicationModel.PaidOrderDetailsResponse>} -
362
399
  * Success response
@@ -364,9 +401,10 @@ declare class Payment {
364
401
  * @summary: API to fetch the paid order details
365
402
  * @description: Use this API to fetch the paid order details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/paidOrderDetails/).
366
403
  */
367
- paidOrderDetails({ aggregator }?: PaymentApplicationValidator.PaidOrderDetailsParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PaidOrderDetailsResponse>;
404
+ paidOrderDetails({ aggregator, requestHeaders }?: PaymentApplicationValidator.PaidOrderDetailsParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PaidOrderDetailsResponse>;
368
405
  /**
369
406
  * @param {PaymentApplicationValidator.PollingPaymentLinkParam} arg - Arg object.
407
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
370
408
  * @param {import("../ApplicationAPIClient").Options} - Options
371
409
  * @returns {Promise<PaymentApplicationModel.PollingPaymentLinkResponse>} -
372
410
  * Success response
@@ -374,9 +412,10 @@ declare class Payment {
374
412
  * @summary: Used for polling if payment successful or not
375
413
  * @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/).
376
414
  */
377
- pollingPaymentLink({ paymentLinkId }?: PaymentApplicationValidator.PollingPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.PollingPaymentLinkResponse>;
415
+ pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.PollingPaymentLinkResponse>;
378
416
  /**
379
417
  * @param {PaymentApplicationValidator.RedirectToAggregatorParam} arg - Arg object.
418
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
380
419
  * @param {import("../ApplicationAPIClient").Options} - Options
381
420
  * @returns {Promise<PaymentApplicationModel.RedirectToAggregatorResponse>}
382
421
  * - Success response
@@ -385,18 +424,20 @@ declare class Payment {
385
424
  * @summary: API to get the redirect url to redirect the user to aggregator's page
386
425
  * @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/).
387
426
  */
388
- redirectToAggregator({ source, aggregator }?: PaymentApplicationValidator.RedirectToAggregatorParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.RedirectToAggregatorResponse>;
427
+ redirectToAggregator({ source, aggregator, requestHeaders }?: PaymentApplicationValidator.RedirectToAggregatorParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.RedirectToAggregatorResponse>;
389
428
  /**
390
429
  * @param {PaymentApplicationValidator.RenderHTMLParam} arg - Arg object.
430
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
391
431
  * @param {import("../ApplicationAPIClient").Options} - Options
392
432
  * @returns {Promise<PaymentApplicationModel.renderHTMLResponse>} - Success response
393
433
  * @name renderHTML
394
434
  * @summary: Convert base64 string to HTML form
395
435
  * @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/).
396
436
  */
397
- renderHTML({ body }?: PaymentApplicationValidator.RenderHTMLParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.renderHTMLResponse>;
437
+ renderHTML({ body, requestHeaders }?: PaymentApplicationValidator.RenderHTMLParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.renderHTMLResponse>;
398
438
  /**
399
439
  * @param {PaymentApplicationValidator.ResendOrCancelPaymentParam} arg - Arg object.
440
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
400
441
  * @param {import("../ApplicationAPIClient").Options} - Options
401
442
  * @returns {Promise<PaymentApplicationModel.ResendOrCancelPaymentResponse>}
402
443
  * - Success response
@@ -405,9 +446,10 @@ declare class Payment {
405
446
  * @summary: API to resend and cancel a payment link which was already generated.
406
447
  * @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/).
407
448
  */
408
- resendOrCancelPayment({ body }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ResendOrCancelPaymentResponse>;
449
+ resendOrCancelPayment({ body, requestHeaders }?: PaymentApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendOrCancelPaymentResponse>;
409
450
  /**
410
451
  * @param {PaymentApplicationValidator.ResendPaymentLinkParam} arg - Arg object.
452
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
411
453
  * @param {import("../ApplicationAPIClient").Options} - Options
412
454
  * @returns {Promise<PaymentApplicationModel.ResendPaymentLinkResponse>} -
413
455
  * Success response
@@ -415,10 +457,11 @@ declare class Payment {
415
457
  * @summary: Resend payment link
416
458
  * @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/).
417
459
  */
418
- resendPaymentLink({ body }?: PaymentApplicationValidator.ResendPaymentLinkParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ResendPaymentLinkResponse>;
460
+ resendPaymentLink({ body, requestHeaders }?: PaymentApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ResendPaymentLinkResponse>;
419
461
  /**
420
462
  * @param {PaymentApplicationValidator.UpdateDefaultBeneficiaryParam} arg -
421
463
  * Arg object.
464
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
422
465
  * @param {import("../ApplicationAPIClient").Options} - Options
423
466
  * @returns {Promise<PaymentApplicationModel.SetDefaultBeneficiaryResponse>}
424
467
  * - Success response
@@ -427,18 +470,20 @@ declare class Payment {
427
470
  * @summary: Set a default beneficiary for a refund
428
471
  * @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/).
429
472
  */
430
- updateDefaultBeneficiary({ body }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.SetDefaultBeneficiaryResponse>;
473
+ updateDefaultBeneficiary({ body, requestHeaders }?: PaymentApplicationValidator.UpdateDefaultBeneficiaryParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.SetDefaultBeneficiaryResponse>;
431
474
  /**
432
475
  * @param {PaymentApplicationValidator.ValidateVPAParam} arg - Arg object.
476
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
433
477
  * @param {import("../ApplicationAPIClient").Options} - Options
434
478
  * @returns {Promise<PaymentApplicationModel.ValidateVPAResponse>} - Success response
435
479
  * @name validateVPA
436
480
  * @summary: API to Validate UPI ID
437
481
  * @description: API to Validate UPI ID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/payment/validateVPA/).
438
482
  */
439
- validateVPA({ body }?: PaymentApplicationValidator.ValidateVPAParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ValidateVPAResponse>;
483
+ validateVPA({ body, requestHeaders }?: PaymentApplicationValidator.ValidateVPAParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateVPAResponse>;
440
484
  /**
441
485
  * @param {PaymentApplicationValidator.VerifyAndChargePaymentParam} arg - Arg object.
486
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
442
487
  * @param {import("../ApplicationAPIClient").Options} - Options
443
488
  * @returns {Promise<PaymentApplicationModel.ChargeCustomerResponse>} -
444
489
  * Success response
@@ -446,10 +491,11 @@ declare class Payment {
446
491
  * @summary: Verify and charge payment
447
492
  * @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/).
448
493
  */
449
- verifyAndChargePayment({ body }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ChargeCustomerResponse>;
494
+ verifyAndChargePayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyAndChargePaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ChargeCustomerResponse>;
450
495
  /**
451
496
  * @param {PaymentApplicationValidator.VerifyCustomerForPaymentParam} arg -
452
497
  * Arg object.
498
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
453
499
  * @param {import("../ApplicationAPIClient").Options} - Options
454
500
  * @returns {Promise<PaymentApplicationModel.ValidateCustomerResponse>} -
455
501
  * Success response
@@ -457,20 +503,22 @@ declare class Payment {
457
503
  * @summary: Validate customer for payment
458
504
  * @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/).
459
505
  */
460
- verifyCustomerForPayment({ body }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.ValidateCustomerResponse>;
506
+ verifyCustomerForPayment({ body, requestHeaders }?: PaymentApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.ValidateCustomerResponse>;
461
507
  /**
462
508
  * @param {PaymentApplicationValidator.VerifyIfscCodeParam} arg - Arg object.
509
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
463
510
  * @param {import("../ApplicationAPIClient").Options} - Options
464
511
  * @returns {Promise<PaymentApplicationModel.IfscCodeResponse>} - Success response
465
512
  * @name verifyIfscCode
466
513
  * @summary: Verify IFSC Code
467
514
  * @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/).
468
515
  */
469
- verifyIfscCode({ ifscCode }?: PaymentApplicationValidator.VerifyIfscCodeParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.IfscCodeResponse>;
516
+ verifyIfscCode({ ifscCode, requestHeaders }?: PaymentApplicationValidator.VerifyIfscCodeParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.IfscCodeResponse>;
470
517
  /**
471
518
  * @param {PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam} arg
472
519
  * - Arg object.
473
520
  *
521
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
474
522
  * @param {import("../ApplicationAPIClient").Options} - Options
475
523
  * @returns {Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationResponse>}
476
524
  * - Success response
@@ -479,18 +527,19 @@ declare class Payment {
479
527
  * @summary: Verify the beneficiary details using OTP
480
528
  * @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/).
481
529
  */
482
- verifyOtpAndAddBeneficiaryForBank({ body }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationResponse>;
530
+ verifyOtpAndAddBeneficiaryForBank({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForBankParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.AddBeneficiaryViaOtpVerificationResponse>;
483
531
  /**
484
532
  * @param {PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam} arg
485
533
  * - Arg object.
486
534
  *
535
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
487
536
  * @param {import("../ApplicationAPIClient").Options} - Options
488
537
  * @returns {Promise<PaymentApplicationModel.WalletOtpResponse>} - Success response
489
538
  * @name verifyOtpAndAddBeneficiaryForWallet
490
539
  * @summary: Send OTP on adding a wallet beneficiary
491
540
  * @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/).
492
541
  */
493
- verifyOtpAndAddBeneficiaryForWallet({ body }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { headers }?: import("../ApplicationAPIClient").Options): Promise<PaymentApplicationModel.WalletOtpResponse>;
542
+ verifyOtpAndAddBeneficiaryForWallet({ body, requestHeaders }?: PaymentApplicationValidator.VerifyOtpAndAddBeneficiaryForWalletParam, { responseHeaders }?: object): Promise<PaymentApplicationModel.WalletOtpResponse>;
494
543
  }
495
544
  import PaymentApplicationValidator = require("./PaymentApplicationValidator");
496
545
  import PaymentApplicationModel = require("./PaymentApplicationModel");