@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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
- package/sdk/application/Cart/CartApplicationClient.js +82 -71
- package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
- package/sdk/application/Cart/CartApplicationValidator.js +59 -34
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
- package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
- package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
- package/sdk/application/Content/ContentApplicationClient.js +34 -115
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
- package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
- package/sdk/application/Lead/LeadApplicationClient.js +14 -14
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
- package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
- package/sdk/application/Order/OrderApplicationClient.js +24 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
- package/sdk/application/Order/OrderApplicationModel.js +28 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
- package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
- package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
- package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
- package/sdk/application/User/UserApplicationClient.d.ts +64 -64
- package/sdk/application/User/UserApplicationClient.js +64 -64
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
- package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
- package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
- package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
- package/sdk/platform/Cart/CartPlatformModel.js +12 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
- package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
- package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
- package/sdk/platform/Common/CommonPlatformClient.js +3 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
- package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
- package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
- package/sdk/platform/Content/ContentPlatformClient.js +7 -7
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
- package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +19 -55
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +19 -55
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -12
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -14
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
- package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
- package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
- package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
- package/sdk/platform/Order/OrderPlatformClient.js +79 -294
- package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
- package/sdk/platform/Order/OrderPlatformModel.js +34 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
- package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
- package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
- package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
- package/sdk/platform/User/UserPlatformModel.js +2 -2
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
- package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
- package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
|
@@ -9,8 +9,8 @@ declare class Payment {
|
|
|
9
9
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
10
10
|
* @returns {Promise<PaymentPlatformModel.EdcDeviceUpdateResponse>} - Success response
|
|
11
11
|
* @name addEdcDevice
|
|
12
|
-
* @summary:
|
|
13
|
-
* @description:
|
|
12
|
+
* @summary: Add EDC device.
|
|
13
|
+
* @description: Register and add a new EDC device. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/addEdcDevice/).
|
|
14
14
|
*/
|
|
15
15
|
addEdcDevice({ terminalUniqueIdentifier, body, requestHeaders }?: PaymentPlatformApplicationValidator.AddEdcDeviceParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcDeviceUpdateResponse>;
|
|
16
16
|
/**
|
|
@@ -21,8 +21,8 @@ declare class Payment {
|
|
|
21
21
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
22
22
|
* @returns {Promise<PaymentPlatformModel.RefundAccountResponse>} - Success response
|
|
23
23
|
* @name addRefundBankAccountUsingOTP
|
|
24
|
-
* @summary:
|
|
25
|
-
* @description:
|
|
24
|
+
* @summary: Add refund bank account using OTP.
|
|
25
|
+
* @description: Register a refund bank account with OTP verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/addRefundBankAccountUsingOTP/).
|
|
26
26
|
*/
|
|
27
27
|
addRefundBankAccountUsingOTP({ body, requestHeaders }?: PaymentPlatformApplicationValidator.AddRefundBankAccountUsingOTPParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RefundAccountResponse>;
|
|
28
28
|
/**
|
|
@@ -34,8 +34,8 @@ declare class Payment {
|
|
|
34
34
|
* @returns {Promise<PaymentPlatformModel.CancelPaymentLinkResponse>} -
|
|
35
35
|
* Success response
|
|
36
36
|
* @name cancelPaymentLink
|
|
37
|
-
* @summary: Cancel payment link
|
|
38
|
-
* @description:
|
|
37
|
+
* @summary: Cancel payment link.
|
|
38
|
+
* @description: Deactivate and cancel a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/cancelPaymentLink/).
|
|
39
39
|
*/
|
|
40
40
|
cancelPaymentLink({ body, requestHeaders }?: PaymentPlatformApplicationValidator.CancelPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.CancelPaymentLinkResponse>;
|
|
41
41
|
/**
|
|
@@ -47,8 +47,8 @@ declare class Payment {
|
|
|
47
47
|
* @returns {Promise<PaymentPlatformModel.PaymentStatusUpdateResponse>} -
|
|
48
48
|
* Success response
|
|
49
49
|
* @name checkAndUpdatePaymentStatus
|
|
50
|
-
* @summary:
|
|
51
|
-
* @description:
|
|
50
|
+
* @summary: Check and update payment status.
|
|
51
|
+
* @description: Verify and modify the status of a payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/checkAndUpdatePaymentStatus/).
|
|
52
52
|
*/
|
|
53
53
|
checkAndUpdatePaymentStatus({ body, requestHeaders }?: PaymentPlatformApplicationValidator.CheckAndUpdatePaymentStatusParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentStatusUpdateResponse>;
|
|
54
54
|
/**
|
|
@@ -58,8 +58,8 @@ declare class Payment {
|
|
|
58
58
|
* @returns {Promise<PaymentPlatformModel.PaymentConfirmationResponse>} -
|
|
59
59
|
* Success response
|
|
60
60
|
* @name confirmPayment
|
|
61
|
-
* @summary: Confirm payment
|
|
62
|
-
* @description:
|
|
61
|
+
* @summary: Confirm payment.
|
|
62
|
+
* @description: Authenticate and confirm a payment. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/confirmPayment/).
|
|
63
63
|
*/
|
|
64
64
|
confirmPayment({ body, requestHeaders }?: PaymentPlatformApplicationValidator.ConfirmPaymentParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentConfirmationResponse>;
|
|
65
65
|
/**
|
|
@@ -72,8 +72,8 @@ declare class Payment {
|
|
|
72
72
|
* - Success response
|
|
73
73
|
*
|
|
74
74
|
* @name createMerchantRefundPriority
|
|
75
|
-
* @summary:
|
|
76
|
-
* @description:
|
|
75
|
+
* @summary: Crete merchant refund priority
|
|
76
|
+
* @description: Crete merchant refund priority. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/createMerchantRefundPriority/).
|
|
77
77
|
*/
|
|
78
78
|
createMerchantRefundPriority({ configType, body, requestHeaders }?: PaymentPlatformApplicationValidator.CreateMerchantRefundPriorityParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RefundPriorityResponseSerializer>;
|
|
79
79
|
/**
|
|
@@ -85,8 +85,8 @@ declare class Payment {
|
|
|
85
85
|
* @returns {Promise<PaymentPlatformModel.CreatePaymentLinkResponse>} -
|
|
86
86
|
* Success response
|
|
87
87
|
* @name createPaymentLink
|
|
88
|
-
* @summary: Create payment link
|
|
89
|
-
* @description:
|
|
88
|
+
* @summary: Create payment link.
|
|
89
|
+
* @description: Generate a new link for accepting payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/createPaymentLink/).
|
|
90
90
|
*/
|
|
91
91
|
createPaymentLink({ body, requestHeaders }?: PaymentPlatformApplicationValidator.CreatePaymentLinkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.CreatePaymentLinkResponse>;
|
|
92
92
|
/**
|
|
@@ -111,8 +111,8 @@ declare class Payment {
|
|
|
111
111
|
* - Success response
|
|
112
112
|
*
|
|
113
113
|
* @name edcAggregatorsAndModelList
|
|
114
|
-
* @summary:
|
|
115
|
-
* @description:
|
|
114
|
+
* @summary: EDC aggregators and model list.
|
|
115
|
+
* @description: Retrieve a list of EDC (Electronic Data Capture) aggregators and models. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/edcAggregatorsAndModelList/).
|
|
116
116
|
*/
|
|
117
117
|
edcAggregatorsAndModelList({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcAggregatorAndModelListResponse>;
|
|
118
118
|
/**
|
|
@@ -121,8 +121,8 @@ declare class Payment {
|
|
|
121
121
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
122
122
|
* @returns {Promise<PaymentPlatformModel.EdcDeviceListResponse>} - Success response
|
|
123
123
|
* @name edcDeviceList
|
|
124
|
-
* @summary:
|
|
125
|
-
* @description:
|
|
124
|
+
* @summary: EDC device list.
|
|
125
|
+
* @description: Retrieve a list of available EDC devices. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/edcDeviceList/).
|
|
126
126
|
*/
|
|
127
127
|
edcDeviceList({ pageNo, pageSize, isActive, storeId, deviceTag, requestHeaders }?: PaymentPlatformApplicationValidator.EdcDeviceListParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcDeviceListResponse>;
|
|
128
128
|
/**
|
|
@@ -131,8 +131,8 @@ declare class Payment {
|
|
|
131
131
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
132
132
|
* @returns {Promise<PaymentPlatformModel.EdcDeviceStatsResponse>} - Success response
|
|
133
133
|
* @name edcDeviceStats
|
|
134
|
-
* @summary:
|
|
135
|
-
* @description:
|
|
134
|
+
* @summary: EDC device stats.
|
|
135
|
+
* @description: Get statistics and data related to EDC devices. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/edcDeviceStats/).
|
|
136
136
|
*/
|
|
137
137
|
edcDeviceStats({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcDeviceStatsResponse>;
|
|
138
138
|
/**
|
|
@@ -143,8 +143,8 @@ declare class Payment {
|
|
|
143
143
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
144
144
|
* @returns {Promise<PaymentPlatformModel.RefundAccountResponse>} - Success response
|
|
145
145
|
* @name getBankAccountDetailsOpenAPI
|
|
146
|
-
* @summary: Get bank details
|
|
147
|
-
* @description:
|
|
146
|
+
* @summary: Get bank account details.
|
|
147
|
+
* @description: Retrieve bank account information using an open API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getBankAccountDetailsOpenAPI/).
|
|
148
148
|
*/
|
|
149
149
|
getBankAccountDetailsOpenAPI({ orderId, requestHash, requestHeaders }?: PaymentPlatformApplicationValidator.GetBankAccountDetailsOpenAPIParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RefundAccountResponse>;
|
|
150
150
|
/**
|
|
@@ -156,8 +156,8 @@ declare class Payment {
|
|
|
156
156
|
* @returns {Promise<PaymentPlatformModel.PaymentGatewayConfigResponse>} -
|
|
157
157
|
* Success response
|
|
158
158
|
* @name getBrandPaymentGatewayConfig
|
|
159
|
-
* @summary: Get
|
|
160
|
-
* @description:
|
|
159
|
+
* @summary: Get brand payment gateway config
|
|
160
|
+
* @description: Retrieve configuration settings for brand payment gateways. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getBrandPaymentGatewayConfig/).
|
|
161
161
|
*/
|
|
162
162
|
getBrandPaymentGatewayConfig({ aggregator, configType, requestHeaders }?: PaymentPlatformApplicationValidator.GetBrandPaymentGatewayConfigParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentGatewayConfigResponse>;
|
|
163
163
|
/**
|
|
@@ -167,8 +167,8 @@ declare class Payment {
|
|
|
167
167
|
* @returns {Promise<PaymentPlatformModel.EdcDeviceDetailsResponse>} -
|
|
168
168
|
* Success response
|
|
169
169
|
* @name getEdcDevice
|
|
170
|
-
* @summary:
|
|
171
|
-
* @description:
|
|
170
|
+
* @summary: Get EDC device.
|
|
171
|
+
* @description: Retrieve detailed information about an EDC device. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getEdcDevice/).
|
|
172
172
|
*/
|
|
173
173
|
getEdcDevice({ terminalUniqueIdentifier, requestHeaders }?: PaymentPlatformApplicationValidator.GetEdcDeviceParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcDeviceDetailsResponse>;
|
|
174
174
|
/**
|
|
@@ -193,8 +193,8 @@ declare class Payment {
|
|
|
193
193
|
* @returns {Promise<PaymentPlatformModel.PlatformPaymentModeResponse>} -
|
|
194
194
|
* Success response
|
|
195
195
|
* @name getMerchantAggregatorPaymentModeDetails
|
|
196
|
-
* @summary: Get
|
|
197
|
-
* @description:
|
|
196
|
+
* @summary: Get merchant aggregator payment mode details.
|
|
197
|
+
* @description: swagger not found. so operationId not found - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getMerchantAggregatorPaymentModeDetails/).
|
|
198
198
|
*/
|
|
199
199
|
getMerchantAggregatorPaymentModeDetails({ aggregatorId, businessUnit, device, requestHeaders }?: PaymentPlatformApplicationValidator.GetMerchantAggregatorPaymentModeDetailsParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PlatformPaymentModeResponse>;
|
|
200
200
|
/**
|
|
@@ -206,8 +206,8 @@ declare class Payment {
|
|
|
206
206
|
* @returns {Promise<PaymentPlatformModel.PlatformPaymentModeResponse>} -
|
|
207
207
|
* Success response
|
|
208
208
|
* @name getMerchantPaymentOption
|
|
209
|
-
* @summary: Get
|
|
210
|
-
* @description:
|
|
209
|
+
* @summary: Get merchant payment option
|
|
210
|
+
* @description: Retrieve all the available Paymet Gateways for merchant and its offline payment mode details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getMerchantPaymentOption/).
|
|
211
211
|
*/
|
|
212
212
|
getMerchantPaymentOption({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentPlatformModel.PlatformPaymentModeResponse>;
|
|
213
213
|
/**
|
|
@@ -220,8 +220,8 @@ declare class Payment {
|
|
|
220
220
|
* - Success response
|
|
221
221
|
*
|
|
222
222
|
* @name getMerchantRefundPriority
|
|
223
|
-
* @summary:
|
|
224
|
-
* @description:
|
|
223
|
+
* @summary: Get merchant refund priority
|
|
224
|
+
* @description: Get merchant refund priority. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getMerchantRefundPriority/).
|
|
225
225
|
*/
|
|
226
226
|
getMerchantRefundPriority({ configType, requestHeaders }?: PaymentPlatformApplicationValidator.GetMerchantRefundPriorityParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RefundPriorityResponseSerializer>;
|
|
227
227
|
/**
|
|
@@ -233,8 +233,8 @@ declare class Payment {
|
|
|
233
233
|
* @returns {Promise<PaymentPlatformModel.PlatformPaymentModeResponse>} -
|
|
234
234
|
* Success response
|
|
235
235
|
* @name getPGConfigAggregators
|
|
236
|
-
* @summary: Get
|
|
237
|
-
* @description:
|
|
236
|
+
* @summary: Get PG (Payment Gateway) config aggregators.
|
|
237
|
+
* @description: swagger not found. so operationId not found - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getPGConfigAggregators/).
|
|
238
238
|
*/
|
|
239
239
|
getPGConfigAggregators({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentPlatformModel.PlatformPaymentModeResponse>;
|
|
240
240
|
/**
|
|
@@ -245,8 +245,8 @@ declare class Payment {
|
|
|
245
245
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
246
246
|
* @returns {Promise<PaymentPlatformModel.GetPaymentCodeResponse>} - Success response
|
|
247
247
|
* @name getPaymentCodeOption
|
|
248
|
-
* @summary:
|
|
249
|
-
* @description:
|
|
248
|
+
* @summary: Get payment mode code.
|
|
249
|
+
* @description: Retrieve options for payment codes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getPaymentCodeOption/).
|
|
250
250
|
*/
|
|
251
251
|
getPaymentCodeOption({ requestHeaders }?: any, { responseHeaders }?: object): Promise<PaymentPlatformModel.GetPaymentCodeResponse>;
|
|
252
252
|
/**
|
|
@@ -255,8 +255,8 @@ declare class Payment {
|
|
|
255
255
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
256
256
|
* @returns {Promise<PaymentPlatformModel.GetPaymentLinkResponse>} - Success response
|
|
257
257
|
* @name getPaymentLink
|
|
258
|
-
* @summary: Get payment link
|
|
259
|
-
* @description:
|
|
258
|
+
* @summary: Get payment link.
|
|
259
|
+
* @description: Retrieve a link for making payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getPaymentLink/).
|
|
260
260
|
*/
|
|
261
261
|
getPaymentLink({ paymentLinkId, requestHeaders }?: PaymentPlatformApplicationValidator.GetPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.GetPaymentLinkResponse>;
|
|
262
262
|
/**
|
|
@@ -294,8 +294,8 @@ declare class Payment {
|
|
|
294
294
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
295
295
|
* @returns {Promise<PaymentPlatformModel.PaymentOptionsResponse>} - Success response
|
|
296
296
|
* @name getPaymentModeRoutes
|
|
297
|
-
* @summary: Get
|
|
298
|
-
* @description:
|
|
297
|
+
* @summary: Get payment mode routes.
|
|
298
|
+
* @description: Retrieve routes and options for payment modes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getPaymentModeRoutes/).
|
|
299
299
|
*/
|
|
300
300
|
getPaymentModeRoutes({ refresh, requestType, orderId, shipmentId, requestHeaders }?: PaymentPlatformApplicationValidator.GetPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentOptionsResponse>;
|
|
301
301
|
/**
|
|
@@ -320,8 +320,8 @@ declare class Payment {
|
|
|
320
320
|
* @returns {Promise<PaymentPlatformModel.PaymentModeRouteResponse>} -
|
|
321
321
|
* Success response
|
|
322
322
|
* @name getPosPaymentModeRoutes
|
|
323
|
-
* @summary: Get
|
|
324
|
-
* @description:
|
|
323
|
+
* @summary: Get POS payment mode routes.
|
|
324
|
+
* @description: Retrieve payment options and aggregator for point-of-sale (POS). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getPosPaymentModeRoutes/).
|
|
325
325
|
*/
|
|
326
326
|
getPosPaymentModeRoutes({ amount, pincode, orderType, cartId, checkoutMode, refresh, orderId, cardReference, userDetails, displaySplit, advancePayment, shipmentId, requestHeaders, }?: PaymentPlatformApplicationValidator.GetPosPaymentModeRoutesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentModeRouteResponse>;
|
|
327
327
|
/**
|
|
@@ -333,8 +333,8 @@ declare class Payment {
|
|
|
333
333
|
* @returns {Promise<PaymentPlatformModel.OrderBeneficiaryResponse>} -
|
|
334
334
|
* Success response
|
|
335
335
|
* @name getUserBeneficiaries
|
|
336
|
-
* @summary:
|
|
337
|
-
* @description:
|
|
336
|
+
* @summary: Get user beneficiaries.
|
|
337
|
+
* @description: Retrieve beneficiaries associated with a user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getUserBeneficiaries/).
|
|
338
338
|
*/
|
|
339
339
|
getUserBeneficiaries({ orderId, requestHeaders }?: PaymentPlatformApplicationValidator.GetUserBeneficiariesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.OrderBeneficiaryResponse>;
|
|
340
340
|
/**
|
|
@@ -345,8 +345,8 @@ declare class Payment {
|
|
|
345
345
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
346
346
|
* @returns {Promise<PaymentPlatformModel.GetUserCODLimitResponse>} - Success response
|
|
347
347
|
* @name getUserCODlimitRoutes
|
|
348
|
-
* @summary: Get COD limit
|
|
349
|
-
* @description:
|
|
348
|
+
* @summary: Get user COD limit routes.
|
|
349
|
+
* @description: Retrieve routes and limits for user cash-on-delivery (COD) transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getUserCODlimitRoutes/).
|
|
350
350
|
*/
|
|
351
351
|
getUserCODlimitRoutes({ merchantUserId, mobileNo, requestHeaders }?: PaymentPlatformApplicationValidator.GetUserCODlimitRoutesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.GetUserCODLimitResponse>;
|
|
352
352
|
/**
|
|
@@ -358,8 +358,8 @@ declare class Payment {
|
|
|
358
358
|
* @returns {Promise<PaymentPlatformModel.OrderBeneficiaryResponse>} -
|
|
359
359
|
* Success response
|
|
360
360
|
* @name getUserOrderBeneficiaries
|
|
361
|
-
* @summary:
|
|
362
|
-
* @description:
|
|
361
|
+
* @summary: Get user order beneficiaries.
|
|
362
|
+
* @description: Retrieve beneficiaries associated with a user orders. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/getUserOrderBeneficiaries/).
|
|
363
363
|
*/
|
|
364
364
|
getUserOrderBeneficiaries({ orderId, requestHeaders }?: PaymentPlatformApplicationValidator.GetUserOrderBeneficiariesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.OrderBeneficiaryResponse>;
|
|
365
365
|
/**
|
|
@@ -371,8 +371,8 @@ declare class Payment {
|
|
|
371
371
|
* @returns {Promise<PaymentPlatformModel.PaymentInitializationResponse>} -
|
|
372
372
|
* Success response
|
|
373
373
|
* @name initialisePayment
|
|
374
|
-
* @summary: Initialize
|
|
375
|
-
* @description:
|
|
374
|
+
* @summary: Initialize payment.
|
|
375
|
+
* @description: Start the payment initiation process for UPI and QR code. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/initialisePayment/).
|
|
376
376
|
*/
|
|
377
377
|
initialisePayment({ body, requestHeaders }?: PaymentPlatformApplicationValidator.InitialisePaymentParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentInitializationResponse>;
|
|
378
378
|
/**
|
|
@@ -384,8 +384,8 @@ declare class Payment {
|
|
|
384
384
|
* @returns {Promise<PaymentPlatformModel.MerchantOnBoardingResponse>} -
|
|
385
385
|
* Success response
|
|
386
386
|
* @name merchantOnBoarding
|
|
387
|
-
* @summary:
|
|
388
|
-
* @description:
|
|
387
|
+
* @summary: Merchant onboarding for BNPL.
|
|
388
|
+
* @description: Initiate the onboarding process for a merchant. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/merchantOnBoarding/).
|
|
389
389
|
*/
|
|
390
390
|
merchantOnBoarding({ body, requestHeaders }?: PaymentPlatformApplicationValidator.MerchantOnBoardingParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.MerchantOnBoardingResponse>;
|
|
391
391
|
/**
|
|
@@ -394,8 +394,8 @@ declare class Payment {
|
|
|
394
394
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
395
395
|
* @returns {Promise<PaymentPlatformModel.GetOauthUrlResponse>} - Success response
|
|
396
396
|
* @name oauthGetUrl
|
|
397
|
-
* @summary:
|
|
398
|
-
* @description:
|
|
397
|
+
* @summary: Get OAuth URL.
|
|
398
|
+
* @description: Retrieve an OAuth URL for PG API authentication. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/oauthGetUrl/).
|
|
399
399
|
*/
|
|
400
400
|
oauthGetUrl({ aggregator, successRedirectUrl, failureRedirectUrl, requestHeaders }?: PaymentPlatformApplicationValidator.OauthGetUrlParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.GetOauthUrlResponse>;
|
|
401
401
|
/**
|
|
@@ -407,8 +407,8 @@ declare class Payment {
|
|
|
407
407
|
* @returns {Promise<PaymentPlatformModel.PlatformPaymentModeResponse>} -
|
|
408
408
|
* Success response
|
|
409
409
|
* @name patchMerchantAggregatorPaymentModeDetails
|
|
410
|
-
* @summary:
|
|
411
|
-
* @description:
|
|
410
|
+
* @summary: Patch merchant aggregator payment mode details.
|
|
411
|
+
* @description: swagger not found. so operationId not found - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/patchMerchantAggregatorPaymentModeDetails/).
|
|
412
412
|
*/
|
|
413
413
|
patchMerchantAggregatorPaymentModeDetails({ aggregatorId, body, requestHeaders }?: PaymentPlatformApplicationValidator.PatchMerchantAggregatorPaymentModeDetailsParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PlatformPaymentModeResponse>;
|
|
414
414
|
/**
|
|
@@ -420,7 +420,7 @@ declare class Payment {
|
|
|
420
420
|
* @returns {Promise<PaymentPlatformModel.PlatformPaymentModeResponse>} -
|
|
421
421
|
* Success response
|
|
422
422
|
* @name patchMerchantPaymentOption
|
|
423
|
-
* @summary:
|
|
423
|
+
* @summary: Patch merchant payment option
|
|
424
424
|
* @description: To updated online payment as active/inactive or offline payment configuration like cod charges, anonymous cod allowed flags. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/patchMerchantPaymentOption/).
|
|
425
425
|
*/
|
|
426
426
|
patchMerchantPaymentOption({ body, requestHeaders }?: PaymentPlatformApplicationValidator.PatchMerchantPaymentOptionParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PlatformPaymentModeResponse>;
|
|
@@ -447,8 +447,8 @@ declare class Payment {
|
|
|
447
447
|
* - Success response
|
|
448
448
|
*
|
|
449
449
|
* @name paymentStatusBulk
|
|
450
|
-
* @summary:
|
|
451
|
-
* @description:
|
|
450
|
+
* @summary: Payment status bulk.
|
|
451
|
+
* @description: Retrieve the status of multiple payments in bulk. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/paymentStatusBulk/).
|
|
452
452
|
*/
|
|
453
453
|
paymentStatusBulk({ body, requestHeaders }?: PaymentPlatformApplicationValidator.PaymentStatusBulkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentStatusBulkHandlerResponse>;
|
|
454
454
|
/**
|
|
@@ -460,8 +460,8 @@ declare class Payment {
|
|
|
460
460
|
* @returns {Promise<PaymentPlatformModel.PollingPaymentLinkResponse>} -
|
|
461
461
|
* Success response
|
|
462
462
|
* @name pollingPaymentLink
|
|
463
|
-
* @summary:
|
|
464
|
-
* @description:
|
|
463
|
+
* @summary: Polling payment link.
|
|
464
|
+
* @description: Continuously check the status of a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/pollingPaymentLink/).
|
|
465
465
|
*/
|
|
466
466
|
pollingPaymentLink({ paymentLinkId, requestHeaders }?: PaymentPlatformApplicationValidator.PollingPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PollingPaymentLinkResponse>;
|
|
467
467
|
/**
|
|
@@ -470,8 +470,8 @@ declare class Payment {
|
|
|
470
470
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
471
471
|
* @returns {Promise<PaymentPlatformModel.RepaymentResponse>} - Success response
|
|
472
472
|
* @name repaymentDetails
|
|
473
|
-
* @summary:
|
|
474
|
-
* @description:
|
|
473
|
+
* @summary: Repayment details for BNPL.
|
|
474
|
+
* @description: Retrieve information about repayment transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/repaymentDetails/).
|
|
475
475
|
*/
|
|
476
476
|
repaymentDetails({ body, requestHeaders }?: PaymentPlatformApplicationValidator.RepaymentDetailsParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RepaymentResponse>;
|
|
477
477
|
/**
|
|
@@ -483,8 +483,8 @@ declare class Payment {
|
|
|
483
483
|
* @returns {Promise<PaymentPlatformModel.ResendOrCancelPaymentResponse>} -
|
|
484
484
|
* Success response
|
|
485
485
|
* @name resendOrCancelPayment
|
|
486
|
-
* @summary:
|
|
487
|
-
* @description:
|
|
486
|
+
* @summary: Resend or cancel payment.
|
|
487
|
+
* @description: Resend or cancel a payment link. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/resendOrCancelPayment/).
|
|
488
488
|
*/
|
|
489
489
|
resendOrCancelPayment({ body, requestHeaders }?: PaymentPlatformApplicationValidator.ResendOrCancelPaymentParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.ResendOrCancelPaymentResponse>;
|
|
490
490
|
/**
|
|
@@ -496,8 +496,8 @@ declare class Payment {
|
|
|
496
496
|
* @returns {Promise<PaymentPlatformModel.ResendPaymentLinkResponse>} -
|
|
497
497
|
* Success response
|
|
498
498
|
* @name resendPaymentLink
|
|
499
|
-
* @summary: Resend payment link
|
|
500
|
-
* @description:
|
|
499
|
+
* @summary: Resend payment link.
|
|
500
|
+
* @description: Reissue a payment link to a recipient. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/resendPaymentLink/).
|
|
501
501
|
*/
|
|
502
502
|
resendPaymentLink({ body, requestHeaders }?: PaymentPlatformApplicationValidator.ResendPaymentLinkParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.ResendPaymentLinkResponse>;
|
|
503
503
|
/**
|
|
@@ -506,8 +506,8 @@ declare class Payment {
|
|
|
506
506
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
507
507
|
* @returns {Promise<PaymentPlatformModel.RevokeOAuthToken>} - Success response
|
|
508
508
|
* @name revokeOauthToken
|
|
509
|
-
* @summary:
|
|
510
|
-
* @description:
|
|
509
|
+
* @summary: Revoke OAuth token.
|
|
510
|
+
* @description: Invalidate an OAuth token. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/revokeOauthToken/).
|
|
511
511
|
*/
|
|
512
512
|
revokeOauthToken({ aggregator, requestHeaders }?: PaymentPlatformApplicationValidator.RevokeOauthTokenParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RevokeOAuthToken>;
|
|
513
513
|
/**
|
|
@@ -519,8 +519,8 @@ declare class Payment {
|
|
|
519
519
|
* @returns {Promise<PaymentPlatformModel.PaymentGatewayToBeReviewed>} -
|
|
520
520
|
* Success response
|
|
521
521
|
* @name saveBrandPaymentGatewayConfig
|
|
522
|
-
* @summary: Save
|
|
523
|
-
* @description:
|
|
522
|
+
* @summary: Save brand payment gateway config.
|
|
523
|
+
* @description: Store and update configuration settings for brand payment gateways. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/saveBrandPaymentGatewayConfig/).
|
|
524
524
|
*/
|
|
525
525
|
saveBrandPaymentGatewayConfig({ body, requestHeaders }?: PaymentPlatformApplicationValidator.SaveBrandPaymentGatewayConfigParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentGatewayToBeReviewed>;
|
|
526
526
|
/**
|
|
@@ -558,8 +558,8 @@ declare class Payment {
|
|
|
558
558
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
559
559
|
* @returns {Promise<PaymentPlatformModel.SetCODOptionResponse>} - Success response
|
|
560
560
|
* @name setUserCODlimitRoutes
|
|
561
|
-
* @summary: Set COD
|
|
562
|
-
* @description:
|
|
561
|
+
* @summary: Set user COD limit routes.
|
|
562
|
+
* @description: Configure routes and limits for user COD transactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/setUserCODlimitRoutes/).
|
|
563
563
|
*/
|
|
564
564
|
setUserCODlimitRoutes({ body, requestHeaders }?: PaymentPlatformApplicationValidator.SetUserCODlimitRoutesParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.SetCODOptionResponse>;
|
|
565
565
|
/**
|
|
@@ -568,8 +568,8 @@ declare class Payment {
|
|
|
568
568
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
569
569
|
* @returns {Promise<PaymentPlatformModel.EdcDeviceAddResponse>} - Success response
|
|
570
570
|
* @name updateEdcDevice
|
|
571
|
-
* @summary:
|
|
572
|
-
* @description:
|
|
571
|
+
* @summary: Update EDC device.
|
|
572
|
+
* @description: Modify the settings and details of an EDC device. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/updateEdcDevice/).
|
|
573
573
|
*/
|
|
574
574
|
updateEdcDevice({ body, requestHeaders }?: PaymentPlatformApplicationValidator.UpdateEdcDeviceParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.EdcDeviceAddResponse>;
|
|
575
575
|
/**
|
|
@@ -596,8 +596,8 @@ declare class Payment {
|
|
|
596
596
|
* - Success response
|
|
597
597
|
*
|
|
598
598
|
* @name updatePaymentSession
|
|
599
|
-
* @summary:
|
|
600
|
-
* @description:
|
|
599
|
+
* @summary: Update payment session.
|
|
600
|
+
* @description: Modify the details of a payment session. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/updatePaymentSession/).
|
|
601
601
|
*/
|
|
602
602
|
updatePaymentSession({ gid, body, requestHeaders }?: PaymentPlatformApplicationValidator.UpdatePaymentSessionParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.PaymentSessionResponseSerializer>;
|
|
603
603
|
/**
|
|
@@ -610,8 +610,8 @@ declare class Payment {
|
|
|
610
610
|
* - Success response
|
|
611
611
|
*
|
|
612
612
|
* @name updateRefundSession
|
|
613
|
-
* @summary:
|
|
614
|
-
* @description:
|
|
613
|
+
* @summary: Update refund session.
|
|
614
|
+
* @description: Modify the details of a refund session. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/updateRefundSession/).
|
|
615
615
|
*/
|
|
616
616
|
updateRefundSession({ gid, requestId, body, requestHeaders }?: PaymentPlatformApplicationValidator.UpdateRefundSessionParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.RefundSessionResponseSerializer>;
|
|
617
617
|
/**
|
|
@@ -623,8 +623,8 @@ declare class Payment {
|
|
|
623
623
|
* @returns {Promise<PaymentPlatformModel.ValidateCustomerResponse>} -
|
|
624
624
|
* Success response
|
|
625
625
|
* @name verifyCustomerForPayment
|
|
626
|
-
* @summary:
|
|
627
|
-
* @description:
|
|
626
|
+
* @summary: Verify customer for payment.
|
|
627
|
+
* @description: Retrieve a link for making payments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/payment/verifyCustomerForPayment/).
|
|
628
628
|
*/
|
|
629
629
|
verifyCustomerForPayment({ body, requestHeaders }?: PaymentPlatformApplicationValidator.VerifyCustomerForPaymentParam, { responseHeaders }?: object): Promise<PaymentPlatformModel.ValidateCustomerResponse>;
|
|
630
630
|
}
|