Skip to content

Commit 9625625

Browse files
authored
Merge pull request #184 from finbox-in/feature/spell-correct-frequency
Correct Frequency spelling
2 parents 484f7e4 + cf83697 commit 9625625

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/bank-connect/android.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ FinBoxBankConnect.Builder(applicationContext)
173173
.journeyMode(MULTI_PDF) // Optional: Multi PDF journey
174174
.aaJourneyMode(ONLY_RECURRING) // Optional: Recurring AA pulls
175175
.aaRecurringTenureMonthCount(3) // Optional: Consent duration is valid for 3 months
176-
.aaRecurringFrequecyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
176+
.aaRecurringFrequencyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
177177
.aaRecurringFrequencyValue(2) // Optional: Number of times to pull the data
178178
.build()
179179
```
@@ -193,7 +193,7 @@ new FinBoxBankConnect.Builder(getApplicationContext())
193193
.journeyMode(MULTI_PDF) // Optional: Multi PDF journey
194194
.aaJourneyMode(ONLY_RECURRING) // Optional: Recurring AA pulls
195195
.aaRecurringTenureMonthCount(3) // Optional: Consent duration is valid for 3 months
196-
.aaRecurringFrequecyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
196+
.aaRecurringFrequencyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
197197
.aaRecurringFrequencyValue(2) // Optional: Number of times to pull the data
198198
.build();
199199
```
@@ -213,7 +213,7 @@ new FinBoxBankConnect.Builder(getApplicationContext())
213213
| `journey_mode` | Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No |
214214
| `aa_journey_mode` | set the journey mode for AA (i.e only_once or only_recurring) | No |
215215
| `aa_recurring_tenure_month_count` | set the recurring consent duration (min: 1 and max: 24) | No |
216-
| `aa_recurring_frequecy_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
216+
| `aa_recurring_frequency_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
217217
| `aa_recurring_frequency_value` | set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No |
218218

219219
`fromDate` and `toDate` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `fromDate` will be today's date - 6 months and `toDate` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.

docs/bank-connect/flutter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ FinBoxBcPlugin.initSdk("CLIENT_API_KEY","FROM_DATE","TO_DATE","BANK_NAME","MODE"
125125
| `journey_mode` | Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No |
126126
| `aa_journey_mode` | set the journey mode for AA (i.e only_once or only_recurring) | No |
127127
| `aa_recurring_tenure_month_count` | set the recurring consent duration (min: 1 and max: 24) | No |
128-
| `aa_recurring_frequecy_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
128+
| `aa_recurring_frequency_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
129129
| `aa_recurring_frequency_value` | set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No |
130130

131131
`fromDate` and `toDate` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `fromDate` will be today's date - 6 months and `toDate` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.

docs/bank-connect/javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ POST **{{$page.frontmatter.base_url}}/{{$page.frontmatter.version}}/session/**
3636
| journey_mode | string | Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No | - |
3737
| aa_journey_mode | string | set the journey mode for AA (i.e only_once or only_recurring) | No | - |
3838
| aa_recurring_tenure_month_count | integer | set the recurring consent duration (min: 1 and max: 24) | No | - |
39-
| aa_recurring_frequecy_unit | string | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No | - |
39+
| aa_recurring_frequency_unit | string | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No | - |
4040
| aa_recurring_frequency_value | integer | set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No | - |
4141

4242
`from_date` and `to_date` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `from_date` will be today's date - 6 months and `to_date` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.

0 commit comments

Comments
 (0)