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
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,7 @@ Set the public key, encryption key and other required parameters. The `RavePayMa
70
70
.isPreAuth(boolean)
71
71
.setSubAccounts(List<SubAccount>)
72
72
.shouldDisplayFee(boolean)
73
+
.showStagingLabel(boolean)
73
74
.initialize();
74
75
75
76
| function | parameter | type | required |
@@ -97,6 +98,7 @@ Set the public key, encryption key and other required parameters. The `RavePayMa
97
98
| withTheme(styleId) | Sets the theme of the UI. | `int` | Not Required
98
99
| setPaymentPlan(payment_plan) | If you want to do recurrent payment, this is the payment plan ID to use for the recurring payment, you can see how to create payment plans [here](https://flutterwavedevelopers.readme.io/v2.0/reference#create-payment-plan) and [here](https://flutterwavedevelopers.readme.io/docs/recurring-billing). This is only available for card payments | `String` | Not Required
99
100
| shouldDisplayFee(boolean) | Set to `false` to not display a dialog for confirming total amount(including charge fee) that Rave will charge. By default this is set to `true` | `boolean` | Not Required
101
+
| showStagingLabel(boolean) | Set to `false` to not display a staging label when in staging environment. By default this is set to `true` | `boolean` | Not Required
The intent's `message` object contains the raw JSON response from the Rave API. This can be parsed to retrieve any additional payment information needed.
129
+
The intent's `message` object contains the raw JSON response from the Rave API. This can be parsed to retrieve any additional payment information needed. Typical success response can be found [here](https://gist.github.com/BolajisBrain/305ef5a6df7744694d9c35787580a2d2) and failed response [here](https://gist.github.com/BolajisBrain/afa972cbca782bbb942984ddec9f5262).
128
130
129
131
> **PLEASE NOTE**
130
132
> We advise you to do a further verification of transaction's details on your server to be
0 commit comments