You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| bill_to | string | (optional) Billing details such as company name. |
114
115
| bill_addr | string | (optional) Street address of billing address. |
115
116
| bill_city | string | (optional) City of billing address. |
116
117
| bill_state | string | (optional) State of billing address. It supports state codes, e.g. NY (New York), for state or province of United States or Canada.|
@@ -246,4 +247,33 @@ Get SMS Verification result.
246
247
| Parameter | Type | Description |
247
248
|-------------------|--------|-------------|
248
249
| result | string | Indicates if the input parameters matched a valid OTP. Y if a valid OTP is found and N if no valid OTP found. |
249
-
```
250
+
```
251
+
252
+
## Payment Class
253
+
```{py:class} Payment(config_object)
254
+
Initiate Payment class.
255
+
256
+
:param object config_object: (Required) The configuration object returned by Configuration Class.
257
+
```
258
+
259
+
```{py:function} feedback(params)
260
+
Report the final payment status back to the system, helping improve fraud detection and risk assessment
261
+
262
+
:param str params: (Required) Parameters of feedback details.
263
+
264
+
| Parameter | Type | Description |
265
+
|--------------|---------|---------------------|
266
+
| email | string | (required) Email address of the payment order. |
267
+
| status | string | (required) Status of the payment order. |
268
+
| message | string | (required) Message returned from the payment gateway for the payment order. |
269
+
| fraudlabspro_id | string | (optional) Unique transaction Id generated by Fraud Check API. |
270
+
271
+
272
+
:return: Returns the details about the feedback in JSON object.
273
+
:rtype: Object
274
+
275
+
| Parameter | Type | Description |
276
+
|-------------------|--------|-------------|
277
+
| result | string | Indicates if submission is successful. |
0 commit comments