diff --git a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/AddTransferMethodTest.java b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/AddTransferMethodTest.java index 914cfde4a..c4af970ff 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/AddTransferMethodTest.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/AddTransferMethodTest.java @@ -124,7 +124,7 @@ public void testAddTransferMethod_accountDetailsHiddenOnEmptyFeeAndProcessingRes @Test public void testAddTransferMethod_displaysErrorDialogOnDuplicateAccountFailure() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_BAD_REQUEST).withBody(sResourceManager .getResourceContent("bank_account_duplicate_routing_response.json")).mock(); @@ -159,7 +159,7 @@ public void testAddTransferMethod_displaysErrorDialogOnDuplicateAccountFailure() @Test public void testAddTransferMethod_displaysUnexpectedErrorDialogOnException() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_BAD_REQUEST).withBody(sResourceManager .getResourceContent("invalid_json_response.json")).mock(); @@ -189,7 +189,7 @@ public void testAddTransferMethod_displaysUnexpectedErrorDialogOnException() { @Test public void testAddTransferMethod_displaysNetworkErrorDialogOnConnectionTimeout() throws IOException { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mActivityTestRule.launchActivity(null); diff --git a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankAccountTest.java b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankAccountTest.java index 3a48ac15e..9134735a2 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankAccountTest.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankAccountTest.java @@ -7,7 +7,9 @@ import static androidx.test.espresso.assertion.ViewAssertions.doesNotExist; import static androidx.test.espresso.assertion.ViewAssertions.matches; import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed; +import static androidx.test.espresso.matcher.ViewMatchers.isEnabled; import static androidx.test.espresso.matcher.ViewMatchers.withContentDescription; +import static androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility; import static androidx.test.espresso.matcher.ViewMatchers.withId; import static androidx.test.espresso.matcher.ViewMatchers.withParent; import static androidx.test.espresso.matcher.ViewMatchers.withText; @@ -16,6 +18,7 @@ import static org.hamcrest.Matchers.allOf; import static org.hamcrest.Matchers.instanceOf; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.not; import static java.net.HttpURLConnection.HTTP_BAD_REQUEST; import static java.net.HttpURLConnection.HTTP_CREATED; @@ -23,6 +26,7 @@ import static java.util.concurrent.TimeUnit.SECONDS; import static com.hyperwallet.android.model.HyperwalletBankAccount.Purpose.SAVINGS; +import static com.hyperwallet.android.util.EspressoUtils.hasEmptyText; import static com.hyperwallet.android.util.EspressoUtils.hasErrorText; import static com.hyperwallet.android.util.EspressoUtils.nestedScrollTo; import static com.hyperwallet.android.util.EspressoUtils.withHint; @@ -37,6 +41,7 @@ import androidx.localbroadcastmanager.content.LocalBroadcastManager; import androidx.test.core.app.ApplicationProvider; import androidx.test.espresso.IdlingRegistry; +import androidx.test.espresso.matcher.ViewMatchers; import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.rule.ActivityTestRule; @@ -63,9 +68,6 @@ @RunWith(AndroidJUnit4.class) public class BankAccountTest { - private static final String ACCOUNT_NUMBER_LABEL = "Account Number"; - private static final String ROUTING_NUMBER_LABEL = "Routing Number"; - private static final String ACCOUNT_TYPE_LABEL = "Account Type"; private static final String ACCOUNT_NUMBER = "8017110254"; private static final String ROUTING_NUMBER = "211179539"; private static final String INVALID_ROUTING_NUMBER = "211179531"; @@ -96,7 +98,7 @@ public void setup() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("authentication_token_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); } @After @@ -118,31 +120,133 @@ public void unregisterIdlingResource() { public void testAddTransferMethod_displaysElementsOnTmcResponse() { mActivityTestRule.launchActivity(null); - onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.toolbar)))).check( - matches(withText(R.string.title_add_bank_account))); - - onView(withId(R.id.branchId)).check(matches(isDisplayed())); - onView(withId(R.id.branchIdLabel)).check(matches(withHint(ROUTING_NUMBER_LABEL))); - onView(withId(R.id.bankAccountId)).check(matches(isDisplayed())); - onView(withId(R.id.bankAccountIdLabel)).check(matches(withHint(ACCOUNT_NUMBER_LABEL))); - onView(withId(R.id.bankAccountPurpose)).check(matches(isDisplayed())); + onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.toolbar)))) + .check(matches(withText(R.string.title_add_bank_account))); + + onView(allOf(withId(R.id.section_header_title), withText("Account Information - United States (USD)"))).check( + matches(isDisplayed())); + onView(withId(R.id.branchId)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.branchIdLabel)).check(matches(isDisplayed())); + onView(withId(R.id.branchIdLabel)).check(matches(withHint("Routing Number"))); + onView(withId(R.id.bankAccountId)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.bankAccountIdLabel)).check(matches(isDisplayed())); + onView(withId(R.id.bankAccountIdLabel)).check(matches(withHint("Account Number"))); + onView(withId(R.id.bankAccountPurpose)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.bankAccountPurposeLabel)).check(matches(isDisplayed())); onView(withId(R.id.bankAccountPurposeLabel)).check( - matches(withHint(ACCOUNT_TYPE_LABEL))); - - onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo()).check( - matches(withText(R.string.button_create_transfer_method))); + matches(withHint("Account Type"))); + + onView(allOf(withId(R.id.section_header_title), withText("Account Holder"))).perform(nestedScrollTo()).check( + matches(isDisplayed())); + onView(withId(R.id.firstName)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.firstNameLabel)).check(matches(isDisplayed())); + onView(withId(R.id.firstNameLabel)).check(matches(withHint("First Name"))); + onView(withId(R.id.middleName)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.middleNameLabel)).check(matches(isDisplayed())); + onView(withId(R.id.middleNameLabel)).check(matches(withHint("Middle Name"))); + onView(withId(R.id.lastName)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.lastNameLabel)).check(matches(isDisplayed())); + onView(withId(R.id.lastNameLabel)).check(matches(withHint("Last Name"))); + onView(withId(R.id.dateOfBirth)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.dateOfBirthLabel)).check(matches(isDisplayed())); + onView(withId(R.id.dateOfBirthLabel)).check(matches(withHint("Date of Birth"))); + + onView(allOf(withId(R.id.section_header_title), withText("Contact Information"))).perform( + nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.phoneNumber)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.phoneNumberLabel)).check(matches(isDisplayed())); + onView(withId(R.id.phoneNumberLabel)).check(matches(withHint("Phone Number"))); + onView(withId(R.id.mobileNumber)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.mobileNumberLabel)).check(matches(isDisplayed())); + onView(withId(R.id.mobileNumberLabel)).check(matches(withHint("Mobile Number"))); + + onView(allOf(withId(R.id.section_header_title), withText("Address"))).perform(nestedScrollTo()).check( + matches(isDisplayed())); + onView(withId(R.id.country)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.countryLabel)).check(matches(isDisplayed())); + onView(withId(R.id.countryLabel)).check(matches(withHint("Country"))); + onView(withId(R.id.stateProvince)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.stateProvinceLabel)).check(matches(isDisplayed())); + onView(withId(R.id.stateProvinceLabel)).check(matches(withHint("State/Province"))); + onView(withId(R.id.addressLine1)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.addressLine1Label)).check(matches(isDisplayed())); + onView(withId(R.id.addressLine1Label)).check(matches(withHint("Street"))); + onView(withId(R.id.city)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.cityLabel)).check(matches(isDisplayed())); + onView(withId(R.id.cityLabel)).check(matches(withHint("City"))); + onView(withId(R.id.postalCode)).perform(nestedScrollTo()).check(matches(isDisplayed())); + onView(withId(R.id.postalCodeLabel)).check(matches(isDisplayed())); + onView(withId(R.id.postalCodeLabel)).check(matches(withHint("Zip/Postal Code"))); + + onView(withId(R.id.add_transfer_method_button)) + .perform(nestedScrollTo()).check(matches(withText(R.string.button_create_transfer_method))); } @Test public void testAddTransferMethod_displaysFeeElementsOnTmcResponse() { mActivityTestRule.launchActivity(null); + onView(withId(R.id.add_transfer_method_static_container)) + .check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); + + onView(withId(R.id.add_transfer_method_fee_label)) + .check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); onView(withId(R.id.add_transfer_method_fee_label)).check( matches(withText(R.string.add_transfer_method_fee_label))); - onView(withId(R.id.add_transfer_method_processing_label)).check( - matches(withText(R.string.add_transfer_method_processing_time_label))); onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("USD 2.00"))); - onView(withId(R.id.add_transfer_method_processing_time_value)).check(matches(withText("1-2 Business days"))); + + //TODO: Uncomment when processing time node is implemented +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withText(R.string.add_transfer_method_processing_time_label))); +// onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("1 - 2 Business Days"))); + } + + @Test + public void testAddTransferMethod_verifyDefaultValues() { + mActivityTestRule.launchActivity(null); + + onView(withId(R.id.branchId)).check(matches(hasEmptyText())); + onView(withId(R.id.bankAccountId)).check(matches(hasEmptyText())); + onView(withId(R.id.bankAccountPurpose)).check(matches(hasEmptyText())); + + onView(withId(R.id.firstName)).check(matches(withText("Brody"))); + onView(withId(R.id.middleName)).check(matches(hasEmptyText())); + onView(withId(R.id.lastName)).check(matches(withText("Nehru"))); + onView(withId(R.id.dateOfBirth)).check(matches(withText("2000-01-01"))); + + onView(withId(R.id.phoneNumber)).check(matches(withText("+1 604 6666666"))); + onView(withId(R.id.mobileNumber)).check(matches(withText("604 666 6666"))); + + onView(withId(R.id.country)).check(matches(withText("Canada"))); + onView(withId(R.id.stateProvince)).check(matches(withText("BC"))); + onView(withId(R.id.addressLine1)).check(matches(withText("950 Granville Street"))); + onView(withId(R.id.city)).check(matches(withText("Vancouver"))); + onView(withId(R.id.postalCode)).check(matches(withText("V6Z1L2"))); + } + + @Test + public void testAddTransferMethod_verifyEditableFields() { + mActivityTestRule.launchActivity(null); + + onView(withId(R.id.branchId)).check(matches(isEnabled())); + onView(withId(R.id.bankAccountId)).check(matches(isEnabled())); + onView(withId(R.id.bankAccountPurpose)).check(matches(isEnabled())); + + onView(withId(R.id.firstName)).check(matches(not(isEnabled()))); + onView(withId(R.id.middleName)).check(matches(isEnabled())); + onView(withId(R.id.lastName)).check(matches(isEnabled())); + onView(withId(R.id.dateOfBirth)).check(matches(isEnabled())); + + onView(withId(R.id.phoneNumber)).check(matches(isEnabled())); + onView(withId(R.id.mobileNumber)).check(matches(isEnabled())); + + onView(withId(R.id.country)).check(matches(not(isEnabled()))); + onView(withId(R.id.stateProvince)).check(matches(isEnabled())); + onView(withId(R.id.addressLine1)).check(matches(isEnabled())); + onView(withId(R.id.city)).check(matches(isEnabled())); + onView(withId(R.id.postalCode)).check(matches(isEnabled())); } @Test @@ -166,6 +270,28 @@ public void onReceive(Context context, Intent intent) { HyperwalletTransferMethod.TransferMethodFields.BRANCH_ID), is(ROUTING_NUMBER)); assertThat("Bank Account purpose is incorrect", transferMethod.getField( HyperwalletTransferMethod.TransferMethodFields.BANK_ACCOUNT_PURPOSE), is(SAVINGS)); + + assertThat("First Name is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.FIRST_NAME), is("Brody")); + assertThat("Last Name is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.LAST_NAME), is("Nehru")); + assertThat("Date of birth is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.DATE_OF_BIRTH), is("2000-01-01")); + + assertThat("Phone Number is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.PHONE_NUMBER), is("+1 604 6666666")); + assertThat("Mobile Number incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.MOBILE_NUMBER), is("604 666 6666")); + assertThat("Country is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.COUNTRY), is("CA")); + assertThat("State Province is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.STATE_PROVINCE), is("BC")); + assertThat("Address is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.ADDRESS_LINE_1), is("950 Granville Street")); + assertThat("City is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.CITY), is("Vancouver")); + assertThat("Postal Code is incorrect", transferMethod.getField( + HyperwalletTransferMethod.TransferMethodFields.POSTAL_CODE), is("V6Z1L2")); } }; @@ -173,11 +299,9 @@ public void onReceive(Context context, Intent intent) { .registerReceiver(br, new IntentFilter("ACTION_HYPERWALLET_TRANSFER_METHOD_ADDED")); onView(withId(R.id.branchId)) - .perform(typeText(ROUTING_NUMBER)) - .perform(closeSoftKeyboard()); + .perform(typeText(ROUTING_NUMBER)).perform(closeSoftKeyboard()); onView(withId(R.id.bankAccountId)) - .perform(typeText(ACCOUNT_NUMBER)) - .perform(closeSoftKeyboard()); + .perform(typeText(ACCOUNT_NUMBER)).perform(closeSoftKeyboard()); onView(withId(R.id.bankAccountPurpose)).perform(click()); onView(withId(R.id.search_button)).check(doesNotExist()); onView(withId(R.id.input_selection_list)).check(new RecyclerViewCountAssertion(2)); @@ -211,17 +335,16 @@ public void testAddTransferMethod_returnsErrorOnInvalidPresence() { onView(withId(R.id.bankAccountPurpose)).perform(click()); onView(allOf(withContentDescription(R.string.abc_action_bar_up_description), - withParent(withId(R.id.input_selection_toolbar)))).perform( - click()); + withParent(withId(R.id.input_selection_toolbar)))).perform(click()); onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo(), click()); onView(withId(R.id.branchIdLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); onView(withId(R.id.bankAccountIdLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); onView(withId(R.id.bankAccountPurposeLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); } @Test @@ -229,11 +352,9 @@ public void testAddTransferMethod_returnsErrorOnInvalidLength() { mActivityTestRule.launchActivity(null); onView(withId(R.id.branchId)) - .perform(typeText("2111795311")) - .perform(closeSoftKeyboard()); + .perform(typeText("2111795311")).perform(closeSoftKeyboard()); onView(withId(R.id.bankAccountId)) - .perform(typeText("1")) - .perform(closeSoftKeyboard()); + .perform(typeText("1")).perform(closeSoftKeyboard()); onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo(), click()); diff --git a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankCardTest.java b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankCardTest.java index 8f05f330d..e2d2c1003 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankCardTest.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/BankCardTest.java @@ -7,6 +7,7 @@ import static androidx.test.espresso.action.ViewActions.typeText; import static androidx.test.espresso.assertion.ViewAssertions.matches; import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed; +import static androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility; import static androidx.test.espresso.matcher.ViewMatchers.withId; import static androidx.test.espresso.matcher.ViewMatchers.withParent; import static androidx.test.espresso.matcher.ViewMatchers.withText; @@ -35,6 +36,7 @@ import androidx.localbroadcastmanager.content.LocalBroadcastManager; import androidx.test.core.app.ApplicationProvider; import androidx.test.espresso.IdlingRegistry; +import androidx.test.espresso.matcher.ViewMatchers; import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.rule.ActivityTestRule; @@ -98,7 +100,7 @@ public void setup() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("authentication_token_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_bank_card_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_card_response.json")).mock(); } @After @@ -124,12 +126,14 @@ public void testAddTransferMethod_displaysElementsOnTmcResponse() { matches(withText(R.string.title_add_bank_card))); onView(withId(R.id.cardNumber)).check(matches(isDisplayed())); + onView(withId(R.id.cardNumberLabel)).check(matches(isDisplayed())); onView(withId(R.id.cardNumberLabel)).check(matches(withHint(CARD_NUMBER_LABEL))); onView(withId(R.id.dateOfExpiry)).check(matches(isDisplayed())); + onView(withId(R.id.dateOfExpiryLabel)).check(matches(isDisplayed())); onView(withId(R.id.dateOfExpiryLabel)).check(matches(withHint(EXPIRY_DATE_LABEL))); onView(withId(R.id.cvv)).check(matches(isDisplayed())); - onView(withId(R.id.cvvLabel)).check( - matches(withHint(CVV_LABEL))); + onView(withId(R.id.cvvLabel)).check(matches(isDisplayed())); + onView(withId(R.id.cvvLabel)).check(matches(withHint(CVV_LABEL))); onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo()).check( matches(withText(R.string.button_create_transfer_method))); @@ -139,11 +143,21 @@ public void testAddTransferMethod_displaysElementsOnTmcResponse() { public void testAddTransferMethod_displaysFeeElementsOnTmcResponse() { mActivityTestRule.launchActivity(null); + onView(withId(R.id.add_transfer_method_static_container)).check( + matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); + + onView(withId(R.id.add_transfer_method_fee_label)).check( + matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); onView(withId(R.id.add_transfer_method_fee_label)).check( matches(withText(R.string.add_transfer_method_fee_label))); - onView(withId(R.id.add_transfer_method_processing_label)).check( - matches(withText(R.string.add_transfer_method_processing_time_label))); onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("USD 1.75"))); + + //TODO: Uncomment when processing time node is implemented +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withText(R.string.add_transfer_method_processing_time_label))); +// onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("1 - 2 Business Days"))); } @Test @@ -211,11 +225,11 @@ public void testAddTransferMethod_returnsErrorOnInvalidPresence() { onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo(), click()); onView(withId(R.id.cardNumberLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); onView(withId(R.id.dateOfExpiryLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); onView(withId(R.id.cvvLabel)) - .check(matches(hasErrorText("You must provide a value for this field."))); + .check(matches(hasErrorText("You must provide a value for this field"))); } @Test diff --git a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/PayPalTest.java b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/PayPalTest.java index 6bf0ec8bd..0133e6a90 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/PayPalTest.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/PayPalTest.java @@ -8,6 +8,7 @@ import static androidx.test.espresso.assertion.ViewAssertions.matches; import static androidx.test.espresso.matcher.RootMatchers.isDialog; import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed; +import static androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility; import static androidx.test.espresso.matcher.ViewMatchers.withId; import static androidx.test.espresso.matcher.ViewMatchers.withParent; import static androidx.test.espresso.matcher.ViewMatchers.withText; @@ -37,6 +38,7 @@ import androidx.localbroadcastmanager.content.LocalBroadcastManager; import androidx.test.core.app.ApplicationProvider; import androidx.test.espresso.IdlingRegistry; +import androidx.test.espresso.matcher.ViewMatchers; import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.rule.ActivityTestRule; @@ -88,7 +90,7 @@ public void setup() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("authentication_token_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_paypal_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_paypal_response.json")).mock(); } @After @@ -114,6 +116,7 @@ public void testAddTransferMethod_displaysElementsOnTmcResponse() { matches(withText(R.string.paypal_account))); onView(withId(R.id.email)).check(matches(isDisplayed())); + onView(withId(R.id.emailLabel)).check(matches(isDisplayed())); onView(withId(R.id.emailLabel)).check(matches(withHint("Email"))); onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo()).check( @@ -124,12 +127,22 @@ public void testAddTransferMethod_displaysElementsOnTmcResponse() { public void testAddTransferMethod_displaysFeeElementsOnTmcResponse() { mActivityTestRule.launchActivity(null); + onView(withId(R.id.add_transfer_method_static_container)).check( + matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); + + onView(withId(R.id.add_transfer_method_fee_label)).check( + matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); onView(withId(R.id.add_transfer_method_fee_label)).check( matches(withText(R.string.add_transfer_method_fee_label))); - onView(withId(R.id.add_transfer_method_processing_label)).check( - matches(withText(R.string.add_transfer_method_processing_time_label))); onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("USD 0.25"))); - onView(withId(R.id.add_transfer_method_processing_time_value)).check(matches(withText("IMMEDIATE"))); + + //TODO: Uncomment when processing time node is implemented +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); +// onView(withId(R.id.add_transfer_method_processing_label)).check( +// matches(withText(R.string.add_transfer_method_processing_time_label))); +// onView(withId(R.id.add_transfer_method_fee_value)).check(matches(withText("IMMEDIATE"))); + } @Test @@ -178,7 +191,7 @@ public void testAddTransferMethod_returnsErrorOnInvalidPattern() { onView(withId(R.id.add_transfer_method_button)).perform(nestedScrollTo(), click()); onView(withId(R.id.emailLabel)) - .check(matches(hasErrorText("accountNumber is invalid"))); + .check(matches(hasErrorText("is invalid length or format."))); } @Test diff --git a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/SelectTransferMethodTest.java b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/SelectTransferMethodTest.java index 018556a36..01aa039f7 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/SelectTransferMethodTest.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/transfermethod/ui/SelectTransferMethodTest.java @@ -136,9 +136,13 @@ public void testSelectTransferMethod_verifyCountrySelectionList() { onView(allOf(instanceOf(TextView.class), withParent(withId(R.id.country_selection_toolbar)))).check( matches(withText(R.string.select_transfer_method_country))); onView(withId(R.id.search_button)).check(doesNotExist()); - onView(withId(R.id.country_selection_list)).check(new RecyclerViewCountAssertion(2)); + onView(withId(R.id.country_selection_list)).check(new RecyclerViewCountAssertion(5)); onView(allOf(withId(R.id.country_name), withText("Canada"))).check(matches(isDisplayed())); + onView(allOf(withId(R.id.country_name), withText("Croatia"))).check(matches(isDisplayed())); + onView(allOf(withId(R.id.country_name), withText("Mexico"))).check(matches(isDisplayed())); + onView(allOf(withId(R.id.country_name), withText("United Kingdom"))).check(matches(isDisplayed())); onView(allOf(withId(R.id.country_name), withText("United States"))).check(matches(isDisplayed())); + onView(allOf(withId(R.id.country_item_selected_image), hasSibling(allOf(withId(R.id.country_name), withText("United States"))))).check(matches(isDisplayed())); @@ -185,11 +189,12 @@ public void testSelectTransferMethod_verifyCurrencySelectionList() { matches(withText(R.string.select_transfer_method_currency))); onView(withId(R.id.search_button)).check(doesNotExist()); onView(withId(R.id.currency_selection_list)).check(new RecyclerViewCountAssertion(1)); - onView(allOf(withId(R.id.currency_name), withText("US Dollar"))).check(matches(isDisplayed())); + onView(allOf(withId(R.id.currency_name), withText("United States Dollar"))).check(matches(isDisplayed())); onView(allOf(withId(R.id.currency_item_selected_image), - hasSibling(allOf(withId(R.id.currency_name), withText("US Dollar"))))).check(matches(isDisplayed())); + hasSibling(allOf(withId(R.id.currency_name), withText("United States Dollar"))))).check( + matches(isDisplayed())); - onView(allOf(withId(R.id.currency_name), withText("US Dollar"))).perform(click()); + onView(allOf(withId(R.id.currency_name), withText("United States Dollar"))).perform(click()); onView(withId(R.id.select_transfer_method_currency_value)).check(matches(withText("USD"))); } @@ -204,7 +209,7 @@ public void testSelectTransferMethod_verifyTransferMethodsList() { onView(withId(R.id.select_transfer_method_country_value)).check(matches(withText("United States"))); onView(withId(R.id.select_transfer_method_currency_value)).check(matches(withText("USD"))); - onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(2)); + onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(4)); onView(withId(R.id.select_transfer_method_types_list)).check( matches(atPosition(0, hasDescendant(withText(R.string.bank_account_font_icon))))); @@ -222,6 +227,24 @@ public void testSelectTransferMethod_verifyTransferMethodsList() { onView(withId(R.id.select_transfer_method_types_list)).check( matches(atPosition(1, hasDescendant(withText("Transaction Fee: USD 1.75"))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(2, hasDescendant(withText(R.string.wire_account_font_icon))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(2, hasDescendant(withText(R.string.wire_account))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(2, hasDescendant(withText("Transaction Fee: USD 20.00"))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(2, hasDescendant(withText("Processing Time: 1-3 Business days"))))); + + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(3, hasDescendant(withText(R.string.paypal_account_font_icon))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(3, hasDescendant(withText(R.string.paypal_account))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(3, hasDescendant(withText("Transaction Fee: USD 0.25"))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(3, hasDescendant(withText("Processing Time: IMMEDIATE"))))); + } @Test @@ -283,20 +306,29 @@ public void testSelectTransferMethod_verifyTransferMethodsListUpdatedOnSelection onView(withId(R.id.select_transfer_method_country_value)).check(matches(withText("United States"))); onView(withId(R.id.select_transfer_method_currency_value)).check(matches(withText("USD"))); - onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(2)); + onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(4)); onView(withId(R.id.select_transfer_method_country_value)).perform(click()); onView(allOf(withId(R.id.country_name), withText("Canada"))).perform(click()); - onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(1)); + onView(withId(R.id.select_transfer_method_types_list)).check(new RecyclerViewCountAssertion(2)); onView(withId(R.id.select_transfer_method_types_list)).check( matches(atPosition(0, hasDescendant(withText(R.string.bank_account_font_icon))))); onView(withId(R.id.select_transfer_method_types_list)).check( matches(atPosition(0, hasDescendant(withText(R.string.bank_account))))); onView(withId(R.id.select_transfer_method_types_list)).check( - matches(atPosition(0, hasDescendant(withText("Transaction Fee: USD 2.00"))))); + matches(atPosition(0, hasDescendant(withText("Transaction Fee: CAD 2.20"))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(0, hasDescendant(withText("Processing Time: 1-2 Business days"))))); + + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(1, hasDescendant(withText(R.string.paypal_account_font_icon))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(1, hasDescendant(withText(R.string.paypal_account))))); + onView(withId(R.id.select_transfer_method_types_list)).check( + matches(atPosition(1, hasDescendant(withText("Transaction Fee: CAD 0.25"))))); onView(withId(R.id.select_transfer_method_types_list)).check( - matches(atPosition(0, hasDescendant(withText("Processing Time: 1-3 Business days"))))); + matches(atPosition(1, hasDescendant(withText("Processing Time: IMMEDIATE"))))); } @@ -307,7 +339,7 @@ public void testSelectTransferMethod_verifyIntentIndividualUser() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("successful_tmc_keys_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mIntentsTestRule.launchActivity(null); @@ -326,7 +358,7 @@ public void testSelectTransferMethod_verifyIntentBusinessUser() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("successful_tmc_keys_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mIntentsTestRule.launchActivity(null); @@ -345,7 +377,7 @@ public void testSelectTransferMethod_clickBankAccountOpensAddTransferMethodUi() mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("successful_tmc_keys_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_account_response.json")).mock(); mActivityTestRule.launchActivity(null); @@ -362,7 +394,7 @@ public void testSelectTransferMethod_clickBankCardOpensAddTransferMethodUi() { mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager .getResourceContent("successful_tmc_keys_response.json")).mock(); mMockWebServer.mockResponse().withHttpResponseCode(HTTP_OK).withBody(sResourceManager - .getResourceContent("successful_tmc_bank_card_fields_response.json")).mock(); + .getResourceContent("successful_tmc_fields_bank_card_response.json")).mock(); mActivityTestRule.launchActivity(null); diff --git a/ui/src/androidTest/java/com/hyperwallet/android/util/EspressoUtils.java b/ui/src/androidTest/java/com/hyperwallet/android/util/EspressoUtils.java index e7ccb6747..28fb0b590 100644 --- a/ui/src/androidTest/java/com/hyperwallet/android/util/EspressoUtils.java +++ b/ui/src/androidTest/java/com/hyperwallet/android/util/EspressoUtils.java @@ -4,6 +4,7 @@ import android.graphics.Canvas; import android.graphics.drawable.Drawable; import android.view.View; +import android.widget.EditText; import android.widget.ImageView; import androidx.annotation.NonNull; @@ -131,6 +132,25 @@ public void describeTo(Description description) { }; } + public static Matcher hasEmptyText() { + return new TypeSafeMatcher() { + + @Override + public boolean matchesSafely(View view) { + if (!(view instanceof EditText)) { + return false; + } + String text = ((EditText) view).getText().toString(); + + return text.isEmpty(); + } + + @Override + public void describeTo(Description description) { + } + }; + } + public static ViewAction nestedScrollTo() { return ViewActions.actionWithAssertions(new NestedScrollToAction()); } diff --git a/ui/src/main/java/com/hyperwallet/android/ui/transfermethod/AddTransferMethodFragment.java b/ui/src/main/java/com/hyperwallet/android/ui/transfermethod/AddTransferMethodFragment.java index d220ba52b..659e6a205 100644 --- a/ui/src/main/java/com/hyperwallet/android/ui/transfermethod/AddTransferMethodFragment.java +++ b/ui/src/main/java/com/hyperwallet/android/ui/transfermethod/AddTransferMethodFragment.java @@ -360,7 +360,7 @@ public void showTransactionInformation(@NonNull final List fees, int defaultMargin = (int) requireContext().getResources().getDimension(R.dimen.default_margin); - if (!fees.isEmpty()) { + if (fees != null && !fees.isEmpty()) { String formattedFee = FeeFormatter.getFormattedFee(requireContext(), fees); feeValue.setText(formattedFee); feeLabel.setVisibility(View.VISIBLE); diff --git a/ui/src/main/java/com/hyperwallet/android/ui/view/widget/DateWidget.java b/ui/src/main/java/com/hyperwallet/android/ui/view/widget/DateWidget.java index e4f4edc44..00746d090 100644 --- a/ui/src/main/java/com/hyperwallet/android/ui/view/widget/DateWidget.java +++ b/ui/src/main/java/com/hyperwallet/android/ui/view/widget/DateWidget.java @@ -61,6 +61,7 @@ public View getView(@NonNull final ViewGroup viewGroup) { editText.setEnabled(mField.isEditable()); setIdFromFieldName(editText); + setIdFromFieldLabel(mTextInputLayout); mTextInputLayout.setHint(mField.getLabel()); mTextInputLayout.addView(editText); diff --git a/ui/src/main/java/com/hyperwallet/android/ui/view/widget/PhoneWidget.java b/ui/src/main/java/com/hyperwallet/android/ui/view/widget/PhoneWidget.java index f8254aaa1..b0d2b8e0f 100644 --- a/ui/src/main/java/com/hyperwallet/android/ui/view/widget/PhoneWidget.java +++ b/ui/src/main/java/com/hyperwallet/android/ui/view/widget/PhoneWidget.java @@ -63,7 +63,7 @@ public View getView(@NonNull final ViewGroup viewGroup) { mTextInputLayout.addView(editText); mTextInputLayout.setHint(mField.getLabel()); setIdFromFieldName(editText); - + setIdFromFieldLabel(mTextInputLayout); editText.setOnFocusChangeListener(new View.OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { diff --git a/ui/src/main/res/values/ids.xml b/ui/src/main/res/values/ids.xml index ed5803f80..1fd8a85b2 100644 --- a/ui/src/main/res/values/ids.xml +++ b/ui/src/main/res/values/ids.xml @@ -6,6 +6,12 @@ + + + + + + @@ -15,42 +21,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ui/src/main/res/values/strings.xml b/ui/src/main/res/values/strings.xml index 0d68918e8..659d07697 100644 --- a/ui/src/main/res/values/strings.xml +++ b/ui/src/main/res/values/strings.xml @@ -14,7 +14,7 @@ Add Account Add Transfer Method Bank Account - Bank Card + Debit Card The length of this field is exactly %d. %s is invalid. @@ -68,11 +68,11 @@ Bank Account - Bank Card - Wire Account + Debit Card + Wire Transfer Paper Check Prepaid Card - PayPal + PayPal Account \uE000 \uE005 diff --git a/ui/src/test/java/com/hyperwallet/android/ui/repository/TransferMethodConfigurationRepositoryImplTest.java b/ui/src/test/java/com/hyperwallet/android/ui/repository/TransferMethodConfigurationRepositoryImplTest.java index 7c838b386..0b99486ff 100644 --- a/ui/src/test/java/com/hyperwallet/android/ui/repository/TransferMethodConfigurationRepositoryImplTest.java +++ b/ui/src/test/java/com/hyperwallet/android/ui/repository/TransferMethodConfigurationRepositoryImplTest.java @@ -162,7 +162,8 @@ public Object answer(InvocationOnMock invocation) { public void testGetFields_callsListenerWithFieldResultOnSuccess() throws NoSuchMethodException, InstantiationException, IllegalAccessException, JSONException, InvocationTargetException { - String responseBody = externalResourceManager.getResourceContent("successful_tmc_fields_response.json"); + String responseBody = externalResourceManager.getResourceContent( + "successful_tmc_fields_bank_account_response.json"); final HyperwalletTransferMethodConfigurationFieldResult result = JsonUtils.fromJsonString(responseBody, new TypeReference() { }); @@ -251,7 +252,8 @@ public void testGetKeys_callsListenerWithKeyResultFromCacheWhenNotNull() throws @Test public void testGetFields_callsListenerWithFieldResultFromCacheWhenNotNull() throws Exception { - String responseBody = externalResourceManager.getResourceContent("successful_tmc_fields_response.json"); + String responseBody = externalResourceManager.getResourceContent( + "successful_tmc_fields_bank_account_response.json"); final HyperwalletTransferMethodConfigurationFieldResult result = JsonUtils.fromJsonString(responseBody, new TypeReference() { }); @@ -274,7 +276,8 @@ public void testGetFields_callsListenerWithFieldResultFromCacheWhenNotNull() thr @Test public void testRefreshFields_clearsFieldMapWhenNotEmpty() throws Exception { - String responseBody = externalResourceManager.getResourceContent("successful_tmc_fields_response.json"); + String responseBody = externalResourceManager.getResourceContent( + "successful_tmc_fields_bank_account_response.json"); JSONObject jsonObject = new JSONObject(responseBody); FieldMapKey fieldMapKey = new FieldMapKey(COUNTRY, CURRENCY, TRANSFER_METHOD_TYPE); HashMap fieldMap = new HashMap<>(); diff --git a/ui/src/test/resources/bank_account_response.json b/ui/src/test/resources/bank_account_response.json index a9ddae14c..b4bf94ca8 100644 --- a/ui/src/test/resources/bank_account_response.json +++ b/ui/src/test/resources/bank_account_response.json @@ -13,9 +13,9 @@ "bankAccountRelationship": "SELF", "bankAccountPurpose": "SAVINGS", "profileType": "INDIVIDUAL", - "firstName": "Marsden", - "lastName": "Griffin", - "dateOfBirth": "1980-01-01", + "firstName": "Brody", + "lastName": "Nehru", + "dateOfBirth": "2000-01-01", "countryOfBirth": "US", "countryOfNationality": "CA", "gender": "MALE", diff --git a/ui/src/test/resources/successful_tmc_bank_card_fields_response.json b/ui/src/test/resources/successful_tmc_bank_card_fields_response.json deleted file mode 100644 index 54a5c4c78..000000000 --- a/ui/src/test/resources/successful_tmc_bank_card_fields_response.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "data": { - "transferMethodConfigurations": { - "count": 1, - "pageInfo": { - "limit": 10, - "offset": 0 - }, - "nodes": [ - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_CARD", - "profile": "INDIVIDUAL", - "fees": { - "nodes": [ - { - "country": "US", - "currency": "USD", - "transferMethodType": "BANK_CARD", - "feeRateType": "FLAT", - "value": "1.75" - } - ] - }, - "fields": [ - { - "category": "ACCOUNT", - "dataType": "NUMBER", - "isRequired": true, - "label": "Card Number", - "maxLength": 19, - "minLength": 13, - "name": "cardNumber", - "placeholder": "", - "regularExpression": "^[0-9]{13,19}$", - "validationMessage": { - "length": "The minimum length of this field is 13 and maximum length is 19.", - "pattern": "Card Number is invalid format.", - "empty": "You must provide a value for this field." - } - }, - { - "category": "ACCOUNT", - "dataType": "EXPIRY_DATE", - "isRequired": true, - "label": "Expiry Date", - "maxLength": 7, - "minLength": 7, - "name": "dateOfExpiry", - "placeholder": "", - "regularExpression": "^[0-9]{4}-(1[0-2]|0[1-9])$", - "validationMessage": { - "length": "The exact length of this field is 7.", - "pattern": "Expiry Date is invalid format.", - "empty": "You must provide a value for this field." - } - }, - { - "category": "ACCOUNT", - "dataType": "NUMBER", - "isRequired": true, - "label": "CVV (Card Security Code)", - "maxLength": 4, - "minLength": 3, - "name": "cvv", - "placeholder": "", - "regularExpression": "^[0-9]{3,4}$", - "validationMessage": { - "length": "The minimum length of this field is 3 and maximum length is 4.", - "pattern": "CVV (Card Security Code) is invalid format.", - "empty": "You must provide a value for this field." - } - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_fields_bank_account_response.json b/ui/src/test/resources/successful_tmc_fields_bank_account_response.json new file mode 100644 index 000000000..affe5272e --- /dev/null +++ b/ui/src/test/resources/successful_tmc_fields_bank_account_response.json @@ -0,0 +1,1240 @@ +{ + "data": { + "transferMethodUIConfigurations": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_ACCOUNT", + "profile": "INDIVIDUAL", + "fieldGroups": { + "nodes": [ + { + "group": "ACCOUNT_INFORMATION", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "NUMBER", + "isEditable": true, + "label": "Routing Number", + "maxLength": 9, + "minLength": 9, + "name": "branchId", + "placeholder": "", + "regularExpression": "^[0-9]{9}$", + "isRequired": true, + "validationMessage": { + "length": "The exact length of this field is 9.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ACCOUNT", + "dataType": "NUMBER", + "isEditable": true, + "label": "Account Number", + "maxLength": 17, + "minLength": 4, + "name": "bankAccountId", + "placeholder": "", + "regularExpression": "^(?![0-]+$)[0-9-]{4,17}$", + "isRequired": true, + "validationMessage": { + "length": "The minimum length of this field is 4 and maximum length is 17.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ACCOUNT", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Checking", + "value": "CHECKING" + }, + { + "label": "Savings", + "value": "SAVINGS" + } + ], + "label": "Account Type", + "name": "bankAccountPurpose", + "placeholder": "", + "isRequired": true, + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "INTERMEDIARY_ACCOUNT", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Self", + "value": "SELF" + } + ], + "label": "Relationship", + "name": "bankAccountRelationship", + "placeholder": "", + "isRequired": true, + "value": "SELF", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ACCOUNT_HOLDER", + "fields": [ + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": false, + "label": "First Name", + "name": "firstName", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "isRequired": true, + "value": "Brody", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": true, + "label": "Middle Name", + "name": "middleName", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "isRequired": false, + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": true, + "label": "Last Name", + "name": "lastName", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "isRequired": true, + "value": "Nehru", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "DATE", + "isEditable": true, + "label": "Date of Birth", + "name": "dateOfBirth", + "placeholder": "", + "isRequired": false, + "value": "2000-01-01", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "CONTACT_INFORMATION", + "fields": [ + { + "category": "PROFILE", + "dataType": "PHONE", + "isEditable": true, + "label": "Phone Number", + "name": "phoneNumber", + "placeholder": "", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "isRequired": false, + "value": "+1 604 6666666", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "PHONE", + "isEditable": true, + "label": "Mobile Number", + "name": "mobileNumber", + "placeholder": "", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "isRequired": false, + "value": "604 666 6666", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ADDRESS", + "fields": [ + { + "category": "ADDRESS", + "dataType": "SELECTION", + "isEditable": false, + "fieldSelectionOptions": [ + { + "label": "Afghanistan", + "value": "AF" + }, + { + "label": "\u00c5land Islands", + "value": "AX" + }, + { + "label": "Albania", + "value": "AL" + }, + { + "label": "Algeria", + "value": "DZ" + }, + { + "label": "American Samoa", + "value": "AS" + }, + { + "label": "Andorra", + "value": "AD" + }, + { + "label": "Angola", + "value": "AO" + }, + { + "label": "Anguilla", + "value": "AI" + }, + { + "label": "Antarctica", + "value": "AQ" + }, + { + "label": "Antigua and Barbuda", + "value": "AG" + }, + { + "label": "Argentina", + "value": "AR" + }, + { + "label": "Armenia", + "value": "AM" + }, + { + "label": "Aruba", + "value": "AW" + }, + { + "label": "Australia", + "value": "AU" + }, + { + "label": "Austria", + "value": "AT" + }, + { + "label": "Azerbaijan", + "value": "AZ" + }, + { + "label": "Bahamas", + "value": "BS" + }, + { + "label": "Bahrain", + "value": "BH" + }, + { + "label": "Bangladesh", + "value": "BD" + }, + { + "label": "Barbados", + "value": "BB" + }, + { + "label": "Belgium", + "value": "BE" + }, + { + "label": "Belize", + "value": "BZ" + }, + { + "label": "Benin", + "value": "BJ" + }, + { + "label": "Bermuda", + "value": "BM" + }, + { + "label": "Bhutan", + "value": "BT" + }, + { + "label": "Bolivia", + "value": "BO" + }, + { + "label": "Caribbean Netherlands", + "value": "BQ" + }, + { + "label": "Bosnia and Herzegovina", + "value": "BA" + }, + { + "label": "Botswana", + "value": "BW" + }, + { + "label": "Bouvet Island", + "value": "BV" + }, + { + "label": "Brazil", + "value": "BR" + }, + { + "label": "British Indian Ocean Territory", + "value": "IO" + }, + { + "label": "Brunei", + "value": "BN" + }, + { + "label": "Bulgaria", + "value": "BG" + }, + { + "label": "Burkina Faso", + "value": "BF" + }, + { + "label": "Burundi", + "value": "BI" + }, + { + "label": "Cambodia", + "value": "KH" + }, + { + "label": "Cameroon", + "value": "CM" + }, + { + "label": "Canada", + "value": "CA" + }, + { + "label": "Cape Verde", + "value": "CV" + }, + { + "label": "Cayman Islands", + "value": "KY" + }, + { + "label": "Chad", + "value": "TD" + }, + { + "label": "Chile", + "value": "CL" + }, + { + "label": "China", + "value": "CN" + }, + { + "label": "Christmas Island", + "value": "CX" + }, + { + "label": "Cocos [Keeling] Islands", + "value": "CC" + }, + { + "label": "Colombia", + "value": "CO" + }, + { + "label": "Comoros", + "value": "KM" + }, + { + "label": "Congo - Brazzaville", + "value": "CG" + }, + { + "label": "Cook Islands", + "value": "CK" + }, + { + "label": "Costa Rica", + "value": "CR" + }, + { + "label": "C\u00f4te d\u2019Ivoire", + "value": "CI" + }, + { + "label": "Croatia", + "value": "HR" + }, + { + "label": "Cura\u00e7ao", + "value": "CW" + }, + { + "label": "Cyprus", + "value": "CY" + }, + { + "label": "Czech Republic", + "value": "CZ" + }, + { + "label": "Denmark", + "value": "DK" + }, + { + "label": "Djibouti", + "value": "DJ" + }, + { + "label": "Dominica", + "value": "DM" + }, + { + "label": "Dominican Republic", + "value": "DO" + }, + { + "label": "Timor-Leste", + "value": "TL" + }, + { + "label": "Ecuador", + "value": "EC" + }, + { + "label": "Egypt", + "value": "EG" + }, + { + "label": "El Salvador", + "value": "SV" + }, + { + "label": "Equatorial Guinea", + "value": "GQ" + }, + { + "label": "Estonia", + "value": "EE" + }, + { + "label": "Ethiopia", + "value": "ET" + }, + { + "label": "Falkland Islands", + "value": "FK" + }, + { + "label": "Faroe Islands", + "value": "FO" + }, + { + "label": "Fiji", + "value": "FJ" + }, + { + "label": "Finland", + "value": "FI" + }, + { + "label": "France", + "value": "FR" + }, + { + "label": "French Guiana", + "value": "GF" + }, + { + "label": "French Polynesia", + "value": "PF" + }, + { + "label": "French Southern Territories", + "value": "TF" + }, + { + "label": "Gabon", + "value": "GA" + }, + { + "label": "Gambia", + "value": "GM" + }, + { + "label": "Georgia", + "value": "GE" + }, + { + "label": "Germany", + "value": "DE" + }, + { + "label": "Ghana", + "value": "GH" + }, + { + "label": "Gibraltar", + "value": "GI" + }, + { + "label": "Greece", + "value": "GR" + }, + { + "label": "Greenland", + "value": "GL" + }, + { + "label": "Grenada", + "value": "GD" + }, + { + "label": "Guadeloupe", + "value": "GP" + }, + { + "label": "Guam", + "value": "GU" + }, + { + "label": "Guatemala", + "value": "GT" + }, + { + "label": "Guernsey", + "value": "GG" + }, + { + "label": "Guinea", + "value": "GN" + }, + { + "label": "Guyana", + "value": "GY" + }, + { + "label": "Haiti", + "value": "HT" + }, + { + "label": "Heard Island and McDonald Islands", + "value": "HM" + }, + { + "label": "Honduras", + "value": "HN" + }, + { + "label": "Hong Kong SAR China", + "value": "HK" + }, + { + "label": "Hungary", + "value": "HU" + }, + { + "label": "Iceland", + "value": "IS" + }, + { + "label": "India", + "value": "IN" + }, + { + "label": "Indonesia", + "value": "ID" + }, + { + "label": "Ireland", + "value": "IE" + }, + { + "label": "Isle of Man", + "value": "IM" + }, + { + "label": "Israel", + "value": "IL" + }, + { + "label": "Italy", + "value": "IT" + }, + { + "label": "Jamaica", + "value": "JM" + }, + { + "label": "Japan", + "value": "JP" + }, + { + "label": "Jersey", + "value": "JE" + }, + { + "label": "Jordan", + "value": "JO" + }, + { + "label": "Kazakhstan", + "value": "KZ" + }, + { + "label": "Kenya", + "value": "KE" + }, + { + "label": "Kiribati", + "value": "KI" + }, + { + "label": "South Korea", + "value": "KR" + }, + { + "label": "Kosovo", + "value": "XK" + }, + { + "label": "Kuwait", + "value": "KW" + }, + { + "label": "Kyrgyzstan", + "value": "KG" + }, + { + "label": "Laos", + "value": "LA" + }, + { + "label": "Latvia", + "value": "LV" + }, + { + "label": "Lesotho", + "value": "LS" + }, + { + "label": "Liechtenstein", + "value": "LI" + }, + { + "label": "Lithuania", + "value": "LT" + }, + { + "label": "Luxembourg", + "value": "LU" + }, + { + "label": "Macau SAR China", + "value": "MO" + }, + { + "label": "Macedonia", + "value": "MK" + }, + { + "label": "Madagascar", + "value": "MG" + }, + { + "label": "Malawi", + "value": "MW" + }, + { + "label": "Malaysia", + "value": "MY" + }, + { + "label": "Maldives", + "value": "MV" + }, + { + "label": "Mali", + "value": "ML" + }, + { + "label": "Malta", + "value": "MT" + }, + { + "label": "Marshall Islands", + "value": "MH" + }, + { + "label": "Martinique", + "value": "MQ" + }, + { + "label": "Mauritania", + "value": "MR" + }, + { + "label": "Mauritius", + "value": "MU" + }, + { + "label": "Mayotte", + "value": "YT" + }, + { + "label": "Mexico", + "value": "MX" + }, + { + "label": "Micronesia", + "value": "FM" + }, + { + "label": "Moldova", + "value": "MD" + }, + { + "label": "Monaco", + "value": "MC" + }, + { + "label": "Mongolia", + "value": "MN" + }, + { + "label": "Montenegro", + "value": "ME" + }, + { + "label": "Montserrat", + "value": "MS" + }, + { + "label": "Morocco", + "value": "MA" + }, + { + "label": "Mozambique", + "value": "MZ" + }, + { + "label": "Namibia", + "value": "NA" + }, + { + "label": "Nauru", + "value": "NR" + }, + { + "label": "Nepal", + "value": "NP" + }, + { + "label": "Netherlands", + "value": "NL" + }, + { + "label": "Netherlands Antilles", + "value": "AN" + }, + { + "label": "New Caledonia", + "value": "NC" + }, + { + "label": "New Zealand", + "value": "NZ" + }, + { + "label": "Nicaragua", + "value": "NI" + }, + { + "label": "Niger", + "value": "NE" + }, + { + "label": "Nigeria", + "value": "NG" + }, + { + "label": "Niue", + "value": "NU" + }, + { + "label": "Norfolk Island", + "value": "NF" + }, + { + "label": "Northern Mariana Islands", + "value": "MP" + }, + { + "label": "Norway", + "value": "NO" + }, + { + "label": "Oman", + "value": "OM" + }, + { + "label": "Pakistan", + "value": "PK" + }, + { + "label": "Palau", + "value": "PW" + }, + { + "label": "Palestinian Territories", + "value": "PS" + }, + { + "label": "Panama", + "value": "PA" + }, + { + "label": "Papua New Guinea", + "value": "PG" + }, + { + "label": "Paraguay", + "value": "PY" + }, + { + "label": "Peru", + "value": "PE" + }, + { + "label": "Philippines", + "value": "PH" + }, + { + "label": "Pitcairn Islands", + "value": "PN" + }, + { + "label": "Poland", + "value": "PL" + }, + { + "label": "Portugal", + "value": "PT" + }, + { + "label": "Puerto Rico", + "value": "PR" + }, + { + "label": "Qatar", + "value": "QA" + }, + { + "label": "R\u00e9union", + "value": "RE" + }, + { + "label": "Romania", + "value": "RO" + }, + { + "label": "Russia", + "value": "RU" + }, + { + "label": "Rwanda", + "value": "RW" + }, + { + "label": "Saint Kitts and Nevis", + "value": "KN" + }, + { + "label": "Saint Lucia", + "value": "LC" + }, + { + "label": "Saint Martin", + "value": "MF" + }, + { + "label": "Saint Vincent and the Grenadines", + "value": "VC" + }, + { + "label": "Samoa", + "value": "WS" + }, + { + "label": "San Marino", + "value": "SM" + }, + { + "label": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", + "value": "ST" + }, + { + "label": "Saudi Arabia", + "value": "SA" + }, + { + "label": "Senegal", + "value": "SN" + }, + { + "label": "Serbia", + "value": "RS" + }, + { + "label": "Seychelles", + "value": "SC" + }, + { + "label": "Sierra Leone", + "value": "SL" + }, + { + "label": "Singapore", + "value": "SG" + }, + { + "label": "Sint Maarten", + "value": "SX" + }, + { + "label": "Slovakia", + "value": "SK" + }, + { + "label": "Slovenia", + "value": "SI" + }, + { + "label": "Solomon Islands", + "value": "SB" + }, + { + "label": "South Africa", + "value": "ZA" + }, + { + "label": "South Georgia and the South Sandwich Islands", + "value": "GS" + }, + { + "label": "South Sudan", + "value": "SS" + }, + { + "label": "Spain", + "value": "ES" + }, + { + "label": "Sri Lanka", + "value": "LK" + }, + { + "label": "Saint Barth\u00e9lemy", + "value": "BL" + }, + { + "label": "Saint Helena", + "value": "SH" + }, + { + "label": "Saint Pierre and Miquelon", + "value": "PM" + }, + { + "label": "Suriname", + "value": "SR" + }, + { + "label": "Svalbard and Jan Mayen", + "value": "SJ" + }, + { + "label": "Swaziland", + "value": "SZ" + }, + { + "label": "Sweden", + "value": "SE" + }, + { + "label": "Switzerland", + "value": "CH" + }, + { + "label": "Taiwan", + "value": "TW" + }, + { + "label": "Tajikistan", + "value": "TJ" + }, + { + "label": "Tanzania", + "value": "TZ" + }, + { + "label": "Thailand", + "value": "TH" + }, + { + "label": "Togo", + "value": "TG" + }, + { + "label": "Tokelau", + "value": "TK" + }, + { + "label": "Tonga", + "value": "TO" + }, + { + "label": "Trinidad and Tobago", + "value": "TT" + }, + { + "label": "Tunisia", + "value": "TN" + }, + { + "label": "Turkey", + "value": "TR" + }, + { + "label": "Turkmenistan", + "value": "TM" + }, + { + "label": "Turks and Caicos Islands", + "value": "TC" + }, + { + "label": "Tuvalu", + "value": "TV" + }, + { + "label": "Uganda", + "value": "UG" + }, + { + "label": "Ukraine", + "value": "UA" + }, + { + "label": "United Arab Emirates", + "value": "AE" + }, + { + "label": "United Kingdom", + "value": "GB" + }, + { + "label": "United States", + "value": "US" + }, + { + "label": "U.S. Outlying Islands", + "value": "UM" + }, + { + "label": "Uruguay", + "value": "UY" + }, + { + "label": "Uzbekistan", + "value": "UZ" + }, + { + "label": "Vanuatu", + "value": "VU" + }, + { + "label": "Vatican City", + "value": "VA" + }, + { + "label": "Venezuela", + "value": "VE" + }, + { + "label": "Vietnam", + "value": "VN" + }, + { + "label": "British Virgin Islands", + "value": "VG" + }, + { + "label": "U.S. Virgin Islands", + "value": "VI" + }, + { + "label": "Wallis and Futuna", + "value": "WF" + }, + { + "label": "Western Sahara", + "value": "EH" + }, + { + "label": "Zambia", + "value": "ZM" + } + ], + "label": "Country", + "name": "country", + "placeholder": "", + "isRequired": true, + "value": "CA", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "State\/Province", + "name": "stateProvince", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-().,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,50}$", + "isRequired": true, + "value": "BC", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Street", + "name": "addressLine1", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\\/\\-:().,#;'\u00b0&\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,100}$", + "isRequired": true, + "value": "950 Granville Street", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "City", + "name": "city", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-().,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,50}$", + "isRequired": true, + "value": "Vancouver", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Zip\/Postal Code", + "name": "postalCode", + "placeholder": "", + "regularExpression": "^(?![\\-]+$)[\\sa-zA-Z0-9\\-]{2,16}$", + "isRequired": true, + "value": "V6Z1L2", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + } + ] + } + } + ] + }, + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_ACCOUNT", + "value": "2.00", + "feeRateType": "FLAT" + } + ] + } + } +} \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_fields_bank_card_response.json b/ui/src/test/resources/successful_tmc_fields_bank_card_response.json new file mode 100644 index 000000000..dc91b7d32 --- /dev/null +++ b/ui/src/test/resources/successful_tmc_fields_bank_card_response.json @@ -0,0 +1,1124 @@ +{ + "data": { + "transferMethodUIConfigurations": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_CARD", + "profile": "INDIVIDUAL", + "fieldGroups": { + "nodes": [ + { + "group": "ACCOUNT_INFORMATION", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "NUMBER", + "isEditable": true, + "label": "Card Number", + "maxLength": 19, + "minLength": 13, + "name": "cardNumber", + "placeholder": "", + "regularExpression": "^[0-9]{13,19}$", + "isRequired": true, + "validationMessage": { + "length": "The minimum length of this field is 13 and maximum length is 19.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ACCOUNT", + "dataType": "EXPIRY_DATE", + "isEditable": true, + "label": "Expiry Date", + "maxLength": 7, + "minLength": 7, + "name": "dateOfExpiry", + "placeholder": "", + "regularExpression": "^[0-9]{4}-(1[0-2]|0[1-9])$", + "isRequired": true, + "validationMessage": { + "length": "The exact length of this field is 7.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ACCOUNT", + "dataType": "NUMBER", + "isEditable": true, + "label": "CVV (Card Security Code)", + "maxLength": 4, + "minLength": 3, + "name": "cvv", + "placeholder": "", + "regularExpression": "^[0-9]{3,4}$", + "isRequired": true, + "validationMessage": { + "length": "The minimum length of this field is 3 and maximum length is 4.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "INTERMEDIARY_ACCOUNT", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Self", + "value": "SELF" + } + ], + "label": "Relationship", + "name": "bankAccountRelationship", + "placeholder": "", + "isRequired": true, + "value": "SELF", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ADDRESS", + "fields": [ + { + "category": "ADDRESS", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Afghanistan", + "value": "AF" + }, + { + "label": "\u00c5land Islands", + "value": "AX" + }, + { + "label": "Albania", + "value": "AL" + }, + { + "label": "Algeria", + "value": "DZ" + }, + { + "label": "American Samoa", + "value": "AS" + }, + { + "label": "Andorra", + "value": "AD" + }, + { + "label": "Angola", + "value": "AO" + }, + { + "label": "Anguilla", + "value": "AI" + }, + { + "label": "Antarctica", + "value": "AQ" + }, + { + "label": "Antigua and Barbuda", + "value": "AG" + }, + { + "label": "Argentina", + "value": "AR" + }, + { + "label": "Armenia", + "value": "AM" + }, + { + "label": "Aruba", + "value": "AW" + }, + { + "label": "Australia", + "value": "AU" + }, + { + "label": "Austria", + "value": "AT" + }, + { + "label": "Azerbaijan", + "value": "AZ" + }, + { + "label": "Bahamas", + "value": "BS" + }, + { + "label": "Bahrain", + "value": "BH" + }, + { + "label": "Bangladesh", + "value": "BD" + }, + { + "label": "Barbados", + "value": "BB" + }, + { + "label": "Belgium", + "value": "BE" + }, + { + "label": "Belize", + "value": "BZ" + }, + { + "label": "Benin", + "value": "BJ" + }, + { + "label": "Bermuda", + "value": "BM" + }, + { + "label": "Bhutan", + "value": "BT" + }, + { + "label": "Bolivia", + "value": "BO" + }, + { + "label": "Caribbean Netherlands", + "value": "BQ" + }, + { + "label": "Bosnia and Herzegovina", + "value": "BA" + }, + { + "label": "Botswana", + "value": "BW" + }, + { + "label": "Bouvet Island", + "value": "BV" + }, + { + "label": "Brazil", + "value": "BR" + }, + { + "label": "British Indian Ocean Territory", + "value": "IO" + }, + { + "label": "Brunei", + "value": "BN" + }, + { + "label": "Bulgaria", + "value": "BG" + }, + { + "label": "Burkina Faso", + "value": "BF" + }, + { + "label": "Burundi", + "value": "BI" + }, + { + "label": "Cambodia", + "value": "KH" + }, + { + "label": "Cameroon", + "value": "CM" + }, + { + "label": "Canada", + "value": "CA" + }, + { + "label": "Cape Verde", + "value": "CV" + }, + { + "label": "Cayman Islands", + "value": "KY" + }, + { + "label": "Chad", + "value": "TD" + }, + { + "label": "Chile", + "value": "CL" + }, + { + "label": "China", + "value": "CN" + }, + { + "label": "Christmas Island", + "value": "CX" + }, + { + "label": "Cocos [Keeling] Islands", + "value": "CC" + }, + { + "label": "Colombia", + "value": "CO" + }, + { + "label": "Comoros", + "value": "KM" + }, + { + "label": "Congo - Brazzaville", + "value": "CG" + }, + { + "label": "Cook Islands", + "value": "CK" + }, + { + "label": "Costa Rica", + "value": "CR" + }, + { + "label": "C\u00f4te d\u2019Ivoire", + "value": "CI" + }, + { + "label": "Croatia", + "value": "HR" + }, + { + "label": "Cura\u00e7ao", + "value": "CW" + }, + { + "label": "Cyprus", + "value": "CY" + }, + { + "label": "Czech Republic", + "value": "CZ" + }, + { + "label": "Denmark", + "value": "DK" + }, + { + "label": "Djibouti", + "value": "DJ" + }, + { + "label": "Dominica", + "value": "DM" + }, + { + "label": "Dominican Republic", + "value": "DO" + }, + { + "label": "Timor-Leste", + "value": "TL" + }, + { + "label": "Ecuador", + "value": "EC" + }, + { + "label": "Egypt", + "value": "EG" + }, + { + "label": "El Salvador", + "value": "SV" + }, + { + "label": "Equatorial Guinea", + "value": "GQ" + }, + { + "label": "Estonia", + "value": "EE" + }, + { + "label": "Ethiopia", + "value": "ET" + }, + { + "label": "Falkland Islands", + "value": "FK" + }, + { + "label": "Faroe Islands", + "value": "FO" + }, + { + "label": "Fiji", + "value": "FJ" + }, + { + "label": "Finland", + "value": "FI" + }, + { + "label": "France", + "value": "FR" + }, + { + "label": "French Guiana", + "value": "GF" + }, + { + "label": "French Polynesia", + "value": "PF" + }, + { + "label": "French Southern Territories", + "value": "TF" + }, + { + "label": "Gabon", + "value": "GA" + }, + { + "label": "Gambia", + "value": "GM" + }, + { + "label": "Georgia", + "value": "GE" + }, + { + "label": "Germany", + "value": "DE" + }, + { + "label": "Ghana", + "value": "GH" + }, + { + "label": "Gibraltar", + "value": "GI" + }, + { + "label": "Greece", + "value": "GR" + }, + { + "label": "Greenland", + "value": "GL" + }, + { + "label": "Grenada", + "value": "GD" + }, + { + "label": "Guadeloupe", + "value": "GP" + }, + { + "label": "Guam", + "value": "GU" + }, + { + "label": "Guatemala", + "value": "GT" + }, + { + "label": "Guernsey", + "value": "GG" + }, + { + "label": "Guinea", + "value": "GN" + }, + { + "label": "Guyana", + "value": "GY" + }, + { + "label": "Haiti", + "value": "HT" + }, + { + "label": "Heard Island and McDonald Islands", + "value": "HM" + }, + { + "label": "Honduras", + "value": "HN" + }, + { + "label": "Hong Kong SAR China", + "value": "HK" + }, + { + "label": "Hungary", + "value": "HU" + }, + { + "label": "Iceland", + "value": "IS" + }, + { + "label": "India", + "value": "IN" + }, + { + "label": "Indonesia", + "value": "ID" + }, + { + "label": "Ireland", + "value": "IE" + }, + { + "label": "Isle of Man", + "value": "IM" + }, + { + "label": "Israel", + "value": "IL" + }, + { + "label": "Italy", + "value": "IT" + }, + { + "label": "Jamaica", + "value": "JM" + }, + { + "label": "Japan", + "value": "JP" + }, + { + "label": "Jersey", + "value": "JE" + }, + { + "label": "Jordan", + "value": "JO" + }, + { + "label": "Kazakhstan", + "value": "KZ" + }, + { + "label": "Kenya", + "value": "KE" + }, + { + "label": "Kiribati", + "value": "KI" + }, + { + "label": "South Korea", + "value": "KR" + }, + { + "label": "Kosovo", + "value": "XK" + }, + { + "label": "Kuwait", + "value": "KW" + }, + { + "label": "Kyrgyzstan", + "value": "KG" + }, + { + "label": "Laos", + "value": "LA" + }, + { + "label": "Latvia", + "value": "LV" + }, + { + "label": "Lesotho", + "value": "LS" + }, + { + "label": "Liechtenstein", + "value": "LI" + }, + { + "label": "Lithuania", + "value": "LT" + }, + { + "label": "Luxembourg", + "value": "LU" + }, + { + "label": "Macau SAR China", + "value": "MO" + }, + { + "label": "Macedonia", + "value": "MK" + }, + { + "label": "Madagascar", + "value": "MG" + }, + { + "label": "Malawi", + "value": "MW" + }, + { + "label": "Malaysia", + "value": "MY" + }, + { + "label": "Maldives", + "value": "MV" + }, + { + "label": "Mali", + "value": "ML" + }, + { + "label": "Malta", + "value": "MT" + }, + { + "label": "Marshall Islands", + "value": "MH" + }, + { + "label": "Martinique", + "value": "MQ" + }, + { + "label": "Mauritania", + "value": "MR" + }, + { + "label": "Mauritius", + "value": "MU" + }, + { + "label": "Mayotte", + "value": "YT" + }, + { + "label": "Mexico", + "value": "MX" + }, + { + "label": "Micronesia", + "value": "FM" + }, + { + "label": "Moldova", + "value": "MD" + }, + { + "label": "Monaco", + "value": "MC" + }, + { + "label": "Mongolia", + "value": "MN" + }, + { + "label": "Montenegro", + "value": "ME" + }, + { + "label": "Montserrat", + "value": "MS" + }, + { + "label": "Morocco", + "value": "MA" + }, + { + "label": "Mozambique", + "value": "MZ" + }, + { + "label": "Namibia", + "value": "NA" + }, + { + "label": "Nauru", + "value": "NR" + }, + { + "label": "Nepal", + "value": "NP" + }, + { + "label": "Netherlands", + "value": "NL" + }, + { + "label": "Netherlands Antilles", + "value": "AN" + }, + { + "label": "New Caledonia", + "value": "NC" + }, + { + "label": "New Zealand", + "value": "NZ" + }, + { + "label": "Nicaragua", + "value": "NI" + }, + { + "label": "Niger", + "value": "NE" + }, + { + "label": "Nigeria", + "value": "NG" + }, + { + "label": "Niue", + "value": "NU" + }, + { + "label": "Norfolk Island", + "value": "NF" + }, + { + "label": "Northern Mariana Islands", + "value": "MP" + }, + { + "label": "Norway", + "value": "NO" + }, + { + "label": "Oman", + "value": "OM" + }, + { + "label": "Pakistan", + "value": "PK" + }, + { + "label": "Palau", + "value": "PW" + }, + { + "label": "Palestinian Territories", + "value": "PS" + }, + { + "label": "Panama", + "value": "PA" + }, + { + "label": "Papua New Guinea", + "value": "PG" + }, + { + "label": "Paraguay", + "value": "PY" + }, + { + "label": "Peru", + "value": "PE" + }, + { + "label": "Philippines", + "value": "PH" + }, + { + "label": "Pitcairn Islands", + "value": "PN" + }, + { + "label": "Poland", + "value": "PL" + }, + { + "label": "Portugal", + "value": "PT" + }, + { + "label": "Puerto Rico", + "value": "PR" + }, + { + "label": "Qatar", + "value": "QA" + }, + { + "label": "R\u00e9union", + "value": "RE" + }, + { + "label": "Romania", + "value": "RO" + }, + { + "label": "Russia", + "value": "RU" + }, + { + "label": "Rwanda", + "value": "RW" + }, + { + "label": "Saint Kitts and Nevis", + "value": "KN" + }, + { + "label": "Saint Lucia", + "value": "LC" + }, + { + "label": "Saint Martin", + "value": "MF" + }, + { + "label": "Saint Vincent and the Grenadines", + "value": "VC" + }, + { + "label": "Samoa", + "value": "WS" + }, + { + "label": "San Marino", + "value": "SM" + }, + { + "label": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", + "value": "ST" + }, + { + "label": "Saudi Arabia", + "value": "SA" + }, + { + "label": "Senegal", + "value": "SN" + }, + { + "label": "Serbia", + "value": "RS" + }, + { + "label": "Seychelles", + "value": "SC" + }, + { + "label": "Sierra Leone", + "value": "SL" + }, + { + "label": "Singapore", + "value": "SG" + }, + { + "label": "Sint Maarten", + "value": "SX" + }, + { + "label": "Slovakia", + "value": "SK" + }, + { + "label": "Slovenia", + "value": "SI" + }, + { + "label": "Solomon Islands", + "value": "SB" + }, + { + "label": "South Africa", + "value": "ZA" + }, + { + "label": "South Georgia and the South Sandwich Islands", + "value": "GS" + }, + { + "label": "South Sudan", + "value": "SS" + }, + { + "label": "Spain", + "value": "ES" + }, + { + "label": "Sri Lanka", + "value": "LK" + }, + { + "label": "Saint Barth\u00e9lemy", + "value": "BL" + }, + { + "label": "Saint Helena", + "value": "SH" + }, + { + "label": "Saint Pierre and Miquelon", + "value": "PM" + }, + { + "label": "Suriname", + "value": "SR" + }, + { + "label": "Svalbard and Jan Mayen", + "value": "SJ" + }, + { + "label": "Swaziland", + "value": "SZ" + }, + { + "label": "Sweden", + "value": "SE" + }, + { + "label": "Switzerland", + "value": "CH" + }, + { + "label": "Taiwan", + "value": "TW" + }, + { + "label": "Tajikistan", + "value": "TJ" + }, + { + "label": "Tanzania", + "value": "TZ" + }, + { + "label": "Thailand", + "value": "TH" + }, + { + "label": "Togo", + "value": "TG" + }, + { + "label": "Tokelau", + "value": "TK" + }, + { + "label": "Tonga", + "value": "TO" + }, + { + "label": "Trinidad and Tobago", + "value": "TT" + }, + { + "label": "Tunisia", + "value": "TN" + }, + { + "label": "Turkey", + "value": "TR" + }, + { + "label": "Turkmenistan", + "value": "TM" + }, + { + "label": "Turks and Caicos Islands", + "value": "TC" + }, + { + "label": "Tuvalu", + "value": "TV" + }, + { + "label": "Uganda", + "value": "UG" + }, + { + "label": "Ukraine", + "value": "UA" + }, + { + "label": "United Arab Emirates", + "value": "AE" + }, + { + "label": "United Kingdom", + "value": "GB" + }, + { + "label": "United States", + "value": "US" + }, + { + "label": "U.S. Outlying Islands", + "value": "UM" + }, + { + "label": "Uruguay", + "value": "UY" + }, + { + "label": "Uzbekistan", + "value": "UZ" + }, + { + "label": "Vanuatu", + "value": "VU" + }, + { + "label": "Vatican City", + "value": "VA" + }, + { + "label": "Venezuela", + "value": "VE" + }, + { + "label": "Vietnam", + "value": "VN" + }, + { + "label": "British Virgin Islands", + "value": "VG" + }, + { + "label": "U.S. Virgin Islands", + "value": "VI" + }, + { + "label": "Wallis and Futuna", + "value": "WF" + }, + { + "label": "Western Sahara", + "value": "EH" + }, + { + "label": "Zambia", + "value": "ZM" + } + ], + "label": "Country", + "name": "country", + "placeholder": "", + "isRequired": true, + "value": "CA", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "State\/Province", + "name": "stateProvince", + "placeholder": "", + "isRequired": true, + "value": "BC", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Street", + "name": "addressLine1", + "placeholder": "", + "isRequired": true, + "value": "950 Granville Street", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "City", + "name": "city", + "placeholder": "", + "isRequired": true, + "value": "Vancouver", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Zip\/Postal Code", + "name": "postalCode", + "placeholder": "", + "isRequired": true, + "value": "V6Z1L2", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + } + ] + } + } + ] + }, + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "value": "1.75", + "feeRateType": "FLAT" + } + ] + } + } +} \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_fields_empty_details_response.json b/ui/src/test/resources/successful_tmc_fields_empty_details_response.json index 81ee1bc80..6634f6f8b 100644 --- a/ui/src/test/resources/successful_tmc_fields_empty_details_response.json +++ b/ui/src/test/resources/successful_tmc_fields_empty_details_response.json @@ -53,11 +53,11 @@ "placeholder": "", "fieldSelectionOptions": [ { - "label": "CHECKING", + "label": "Checking", "value": "CHECKING" }, { - "label": "SAVINGS", + "label": "Savings", "value": "SAVINGS" } ], @@ -68,14 +68,1159 @@ } } ] + }, + { + "group": "INTERMEDIARY_ACCOUNT", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "SELECTION", + "isRequired": true, + "value": "SELF", + "isEditable": true, + "name": "bankAccountRelationship", + "label": "Relationship", + "placeholder": "", + "fieldSelectionOptions": [ + { + "label": "Self", + "value": "SELF" + } + ], + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ACCOUNT_HOLDER", + "fields": [ + { + "category": "PROFILE", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "firstName", + "label": "First Name", + "placeholder": "", + "value": "Owen", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isRequired": false, + "isEditable": true, + "name": "middleName", + "label": "Middle Name", + "placeholder": "", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "lastName", + "label": "Last Name", + "placeholder": "", + "value": "Dolan", + "regularExpression": "^[\\sa-zA-Z0-9\\-.,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{1,50}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "DATE", + "isRequired": false, + "isEditable": true, + "name": "dateOfBirth", + "label": "Date of Birth", + "placeholder": "", + "value": "1980-01-01", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "CONTACT_INFORMATION", + "fields": [ + { + "category": "PROFILE", + "dataType": "PHONE", + "isRequired": false, + "isEditable": true, + "name": "phoneNumber", + "label": "Phone Number", + "placeholder": "", + "value": "+1 604 6666666", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "PHONE", + "isRequired": false, + "isEditable": true, + "name": "mobileNumber", + "label": "Mobile Number", + "placeholder": "", + "value": "604 666 6666", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ADDRESS", + "fields": [ + { + "category": "ADDRESS", + "dataType": "SELECTION", + "isRequired": true, + "isEditable": true, + "name": "country", + "label": "Country", + "placeholder": "", + "value": "CA", + "fieldSelectionOptions": [ + { + "label": "Afghanistan", + "value": "AF" + }, + { + "label": "\u00c5land Islands", + "value": "AX" + }, + { + "label": "Albania", + "value": "AL" + }, + { + "label": "Algeria", + "value": "DZ" + }, + { + "label": "American Samoa", + "value": "AS" + }, + { + "label": "Andorra", + "value": "AD" + }, + { + "label": "Angola", + "value": "AO" + }, + { + "label": "Anguilla", + "value": "AI" + }, + { + "label": "Antarctica", + "value": "AQ" + }, + { + "label": "Antigua and Barbuda", + "value": "AG" + }, + { + "label": "Argentina", + "value": "AR" + }, + { + "label": "Armenia", + "value": "AM" + }, + { + "label": "Aruba", + "value": "AW" + }, + { + "label": "Australia", + "value": "AU" + }, + { + "label": "Austria", + "value": "AT" + }, + { + "label": "Azerbaijan", + "value": "AZ" + }, + { + "label": "Bahamas", + "value": "BS" + }, + { + "label": "Bahrain", + "value": "BH" + }, + { + "label": "Bangladesh", + "value": "BD" + }, + { + "label": "Barbados", + "value": "BB" + }, + { + "label": "Belgium", + "value": "BE" + }, + { + "label": "Belize", + "value": "BZ" + }, + { + "label": "Benin", + "value": "BJ" + }, + { + "label": "Bermuda", + "value": "BM" + }, + { + "label": "Bhutan", + "value": "BT" + }, + { + "label": "Bolivia", + "value": "BO" + }, + { + "label": "Bosnia and Herzegovina", + "value": "BA" + }, + { + "label": "Botswana", + "value": "BW" + }, + { + "label": "Bouvet Island", + "value": "BV" + }, + { + "label": "Brazil", + "value": "BR" + }, + { + "label": "British Indian Ocean Territory", + "value": "IO" + }, + { + "label": "British Virgin Islands", + "value": "VG" + }, + { + "label": "Brunei", + "value": "BN" + }, + { + "label": "Bulgaria", + "value": "BG" + }, + { + "label": "Burkina Faso", + "value": "BF" + }, + { + "label": "Burundi", + "value": "BI" + }, + { + "label": "Cambodia", + "value": "KH" + }, + { + "label": "Cameroon", + "value": "CM" + }, + { + "label": "Canada", + "value": "CA" + }, + { + "label": "Cape Verde", + "value": "CV" + }, + { + "label": "Caribbean Netherlands", + "value": "BQ" + }, + { + "label": "Cayman Islands", + "value": "KY" + }, + { + "label": "Chad", + "value": "TD" + }, + { + "label": "Chile", + "value": "CL" + }, + { + "label": "China", + "value": "CN" + }, + { + "label": "Christmas Island", + "value": "CX" + }, + { + "label": "Cocos [Keeling] Islands", + "value": "CC" + }, + { + "label": "Colombia", + "value": "CO" + }, + { + "label": "Comoros", + "value": "KM" + }, + { + "label": "Congo - Brazzaville", + "value": "CG" + }, + { + "label": "Cook Islands", + "value": "CK" + }, + { + "label": "Costa Rica", + "value": "CR" + }, + { + "label": "C\u00f4te d\u2019Ivoire", + "value": "CI" + }, + { + "label": "Croatia", + "value": "HR" + }, + { + "label": "Cura\u00e7ao", + "value": "CW" + }, + { + "label": "Cyprus", + "value": "CY" + }, + { + "label": "Czech Republic", + "value": "CZ" + }, + { + "label": "Denmark", + "value": "DK" + }, + { + "label": "Djibouti", + "value": "DJ" + }, + { + "label": "Dominica", + "value": "DM" + }, + { + "label": "Dominican Republic", + "value": "DO" + }, + { + "label": "Ecuador", + "value": "EC" + }, + { + "label": "Egypt", + "value": "EG" + }, + { + "label": "El Salvador", + "value": "SV" + }, + { + "label": "Equatorial Guinea", + "value": "GQ" + }, + { + "label": "Estonia", + "value": "EE" + }, + { + "label": "Ethiopia", + "value": "ET" + }, + { + "label": "Falkland Islands", + "value": "FK" + }, + { + "label": "Faroe Islands", + "value": "FO" + }, + { + "label": "Fiji", + "value": "FJ" + }, + { + "label": "Finland", + "value": "FI" + }, + { + "label": "France", + "value": "FR" + }, + { + "label": "French Guiana", + "value": "GF" + }, + { + "label": "French Polynesia", + "value": "PF" + }, + { + "label": "French Southern Territories", + "value": "TF" + }, + { + "label": "Gabon", + "value": "GA" + }, + { + "label": "Gambia", + "value": "GM" + }, + { + "label": "Georgia", + "value": "GE" + }, + { + "label": "Germany", + "value": "DE" + }, + { + "label": "Ghana", + "value": "GH" + }, + { + "label": "Gibraltar", + "value": "GI" + }, + { + "label": "Greece", + "value": "GR" + }, + { + "label": "Greenland", + "value": "GL" + }, + { + "label": "Grenada", + "value": "GD" + }, + { + "label": "Guadeloupe", + "value": "GP" + }, + { + "label": "Guam", + "value": "GU" + }, + { + "label": "Guatemala", + "value": "GT" + }, + { + "label": "Guernsey", + "value": "GG" + }, + { + "label": "Guinea", + "value": "GN" + }, + { + "label": "Guyana", + "value": "GY" + }, + { + "label": "Haiti", + "value": "HT" + }, + { + "label": "Heard Island and McDonald Islands", + "value": "HM" + }, + { + "label": "Honduras", + "value": "HN" + }, + { + "label": "Hong Kong SAR China", + "value": "HK" + }, + { + "label": "Hungary", + "value": "HU" + }, + { + "label": "Iceland", + "value": "IS" + }, + { + "label": "India", + "value": "IN" + }, + { + "label": "Indonesia", + "value": "ID" + }, + { + "label": "Ireland", + "value": "IE" + }, + { + "label": "Isle of Man", + "value": "IM" + }, + { + "label": "Israel", + "value": "IL" + }, + { + "label": "Italy", + "value": "IT" + }, + { + "label": "Jamaica", + "value": "JM" + }, + { + "label": "Japan", + "value": "JP" + }, + { + "label": "Jersey", + "value": "JE" + }, + { + "label": "Jordan", + "value": "JO" + }, + { + "label": "Kazakhstan", + "value": "KZ" + }, + { + "label": "Kenya", + "value": "KE" + }, + { + "label": "Kiribati", + "value": "KI" + }, + { + "label": "Kosovo", + "value": "XK" + }, + { + "label": "Kuwait", + "value": "KW" + }, + { + "label": "Kyrgyzstan", + "value": "KG" + }, + { + "label": "Laos", + "value": "LA" + }, + { + "label": "Latvia", + "value": "LV" + }, + { + "label": "Lesotho", + "value": "LS" + }, + { + "label": "Liechtenstein", + "value": "LI" + }, + { + "label": "Lithuania", + "value": "LT" + }, + { + "label": "Luxembourg", + "value": "LU" + }, + { + "label": "Macau SAR China", + "value": "MO" + }, + { + "label": "Macedonia", + "value": "MK" + }, + { + "label": "Madagascar", + "value": "MG" + }, + { + "label": "Malawi", + "value": "MW" + }, + { + "label": "Malaysia", + "value": "MY" + }, + { + "label": "Maldives", + "value": "MV" + }, + { + "label": "Mali", + "value": "ML" + }, + { + "label": "Malta", + "value": "MT" + }, + { + "label": "Marshall Islands", + "value": "MH" + }, + { + "label": "Martinique", + "value": "MQ" + }, + { + "label": "Mauritania", + "value": "MR" + }, + { + "label": "Mauritius", + "value": "MU" + }, + { + "label": "Mayotte", + "value": "YT" + }, + { + "label": "Mexico", + "value": "MX" + }, + { + "label": "Micronesia", + "value": "FM" + }, + { + "label": "Moldova", + "value": "MD" + }, + { + "label": "Monaco", + "value": "MC" + }, + { + "label": "Mongolia", + "value": "MN" + }, + { + "label": "Montenegro", + "value": "ME" + }, + { + "label": "Montserrat", + "value": "MS" + }, + { + "label": "Morocco", + "value": "MA" + }, + { + "label": "Mozambique", + "value": "MZ" + }, + { + "label": "Namibia", + "value": "NA" + }, + { + "label": "Nauru", + "value": "NR" + }, + { + "label": "Nepal", + "value": "NP" + }, + { + "label": "Netherlands", + "value": "NL" + }, + { + "label": "Netherlands Antilles", + "value": "AN" + }, + { + "label": "New Caledonia", + "value": "NC" + }, + { + "label": "New Zealand", + "value": "NZ" + }, + { + "label": "Nicaragua", + "value": "NI" + }, + { + "label": "Niger", + "value": "NE" + }, + { + "label": "Nigeria", + "value": "NG" + }, + { + "label": "Niue", + "value": "NU" + }, + { + "label": "Norfolk Island", + "value": "NF" + }, + { + "label": "Northern Mariana Islands", + "value": "MP" + }, + { + "label": "Norway", + "value": "NO" + }, + { + "label": "Oman", + "value": "OM" + }, + { + "label": "Pakistan", + "value": "PK" + }, + { + "label": "Palau", + "value": "PW" + }, + { + "label": "Palestinian Territories", + "value": "PS" + }, + { + "label": "Panama", + "value": "PA" + }, + { + "label": "Papua New Guinea", + "value": "PG" + }, + { + "label": "Paraguay", + "value": "PY" + }, + { + "label": "Peru", + "value": "PE" + }, + { + "label": "Philippines", + "value": "PH" + }, + { + "label": "Pitcairn Islands", + "value": "PN" + }, + { + "label": "Poland", + "value": "PL" + }, + { + "label": "Portugal", + "value": "PT" + }, + { + "label": "Puerto Rico", + "value": "PR" + }, + { + "label": "Qatar", + "value": "QA" + }, + { + "label": "R\u00e9union", + "value": "RE" + }, + { + "label": "Romania", + "value": "RO" + }, + { + "label": "Russia", + "value": "RU" + }, + { + "label": "Rwanda", + "value": "RW" + }, + { + "label": "Saint Barth\u00e9lemy", + "value": "BL" + }, + { + "label": "Saint Helena", + "value": "SH" + }, + { + "label": "Saint Kitts and Nevis", + "value": "KN" + }, + { + "label": "Saint Lucia", + "value": "LC" + }, + { + "label": "Saint Martin", + "value": "MF" + }, + { + "label": "Saint Pierre and Miquelon", + "value": "PM" + }, + { + "label": "Saint Vincent and the Grenadines", + "value": "VC" + }, + { + "label": "Samoa", + "value": "WS" + }, + { + "label": "San Marino", + "value": "SM" + }, + { + "label": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", + "value": "ST" + }, + { + "label": "Saudi Arabia", + "value": "SA" + }, + { + "label": "Senegal", + "value": "SN" + }, + { + "label": "Serbia", + "value": "RS" + }, + { + "label": "Seychelles", + "value": "SC" + }, + { + "label": "Sierra Leone", + "value": "SL" + }, + { + "label": "Singapore", + "value": "SG" + }, + { + "label": "Sint Maarten", + "value": "SX" + }, + { + "label": "Slovakia", + "value": "SK" + }, + { + "label": "Slovenia", + "value": "SI" + }, + { + "label": "Solomon Islands", + "value": "SB" + }, + { + "label": "South Africa", + "value": "ZA" + }, + { + "label": "South Georgia and the South Sandwich Islands", + "value": "GS" + }, + { + "label": "South Korea", + "value": "KR" + }, + { + "label": "South Sudan", + "value": "SS" + }, + { + "label": "Spain", + "value": "ES" + }, + { + "label": "Sri Lanka", + "value": "LK" + }, + { + "label": "Suriname", + "value": "SR" + }, + { + "label": "Svalbard and Jan Mayen", + "value": "SJ" + }, + { + "label": "Swaziland", + "value": "SZ" + }, + { + "label": "Sweden", + "value": "SE" + }, + { + "label": "Switzerland", + "value": "CH" + }, + { + "label": "Taiwan", + "value": "TW" + }, + { + "label": "Tajikistan", + "value": "TJ" + }, + { + "label": "Tanzania", + "value": "TZ" + }, + { + "label": "Thailand", + "value": "TH" + }, + { + "label": "Timor-Leste", + "value": "TL" + }, + { + "label": "Togo", + "value": "TG" + }, + { + "label": "Tokelau", + "value": "TK" + }, + { + "label": "Tonga", + "value": "TO" + }, + { + "label": "Trinidad and Tobago", + "value": "TT" + }, + { + "label": "Tunisia", + "value": "TN" + }, + { + "label": "Turkey", + "value": "TR" + }, + { + "label": "Turkmenistan", + "value": "TM" + }, + { + "label": "Turks and Caicos Islands", + "value": "TC" + }, + { + "label": "Tuvalu", + "value": "TV" + }, + { + "label": "U.S. Outlying Islands", + "value": "UM" + }, + { + "label": "U.S. Virgin Islands", + "value": "VI" + }, + { + "label": "Uganda", + "value": "UG" + }, + { + "label": "Ukraine", + "value": "UA" + }, + { + "label": "United Arab Emirates", + "value": "AE" + }, + { + "label": "United Kingdom", + "value": "GB" + }, + { + "label": "United States", + "value": "US" + }, + { + "label": "Uruguay", + "value": "UY" + }, + { + "label": "Uzbekistan", + "value": "UZ" + }, + { + "label": "Vanuatu", + "value": "VU" + }, + { + "label": "Vatican City", + "value": "VA" + }, + { + "label": "Venezuela", + "value": "VE" + }, + { + "label": "Vietnam", + "value": "VN" + }, + { + "label": "Wallis and Futuna", + "value": "WF" + }, + { + "label": "Western Sahara", + "value": "EH" + }, + { + "label": "Zambia", + "value": "ZM" + } + ], + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "stateProvince", + "label": "State\/Province", + "placeholder": "", + "value": "BC", + "regularExpression": "^[\\sa-zA-Z0-9\\-().,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,50}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "addressLine1", + "label": "Street", + "placeholder": "", + "value": "950 Granville Street", + "regularExpression": "^[\\sa-zA-Z0-9\\\/\\-:().,#;'\u00b0&\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,100}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "city", + "label": "City", + "placeholder": "", + "value": "Vancouver", + "regularExpression": "^[\\sa-zA-Z0-9\\-().,'\\u00C0-\\u00FF\\u0100-\\u017F\\u0180-\\u024F]{2,50}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isRequired": true, + "isEditable": true, + "name": "postalCode", + "label": "Zip\/Postal Code", + "placeholder": "", + "value": "V6Z1L2", + "regularExpression": "^(?![\\-]+$)[\\sa-zA-Z0-9\\-]{2,16}$", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] } ] } } ] - }, - "fees": { - "nodes": [] } } } \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_fields_paypal_response.json b/ui/src/test/resources/successful_tmc_fields_paypal_response.json new file mode 100644 index 000000000..96d40fdbc --- /dev/null +++ b/ui/src/test/resources/successful_tmc_fields_paypal_response.json @@ -0,0 +1,1193 @@ +{ + "data": { + "transferMethodUIConfigurations": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "PAYPAL_ACCOUNT", + "profile": "INDIVIDUAL", + "fieldGroups": { + "nodes": [ + { + "group": "INTERMEDIARY_ACCOUNT", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Self", + "value": "SELF" + } + ], + "label": "Relationship", + "name": "bankAccountRelationship", + "placeholder": "", + "isRequired": true, + "value": "SELF", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ACCOUNT_HOLDER", + "fields": [ + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": true, + "label": "First Name", + "name": "firstName", + "placeholder": "", + "regularExpression": "[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": true, + "value": "Brody", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": true, + "label": "Middle Name", + "name": "middleName", + "placeholder": "", + "regularExpression": "^$||[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": false, + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "TEXT", + "isEditable": true, + "label": "Last Name", + "name": "lastName", + "placeholder": "", + "regularExpression": "[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": false, + "value": "Nehru", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "DATE", + "isEditable": true, + "label": "Date of Birth", + "name": "dateOfBirth", + "placeholder": "", + "isRequired": false, + "value": "2000-01-01", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "CONTACT_INFORMATION", + "fields": [ + { + "category": "ACCOUNT", + "dataType": "TEXT", + "isEditable": true, + "label": "Email", + "maxLength": 200, + "minLength": 3, + "name": "email", + "placeholder": "", + "regularExpression": "^(?:[a-zA-Z0-9]{1}|[a-zA-Z0-9]{1}[a-zA-Z0-9\\_\\-\\.+]{0,61}[a-zA-Z0-9\\_\\-+]{1})[@]{1}(?:[a-zA-Z0-9\\-]{1}|[a-zA-Z0-9\\-]{1}([a-zA-Z0-9\\-\\.](?!\\.\\.)){0,134}[a-zA-Z0-9\\-]{1})$", + "isRequired": true, + "validationMessage": { + "length": "The minimum length of this field is 3 and maximum length is 200.", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "PHONE", + "isEditable": true, + "label": "Phone Number", + "name": "phoneNumber", + "placeholder": "", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "isRequired": false, + "value": "+1 604 6666666", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "PROFILE", + "dataType": "PHONE", + "isEditable": true, + "label": "Mobile Number", + "name": "mobileNumber", + "placeholder": "", + "regularExpression": "^(?=.{7,17}$)[\\+]{0,1}[0-9\\(\\)\\ \\.\\-]{1,}$", + "isRequired": false, + "value": "604 666 6666", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + }, + { + "group": "ADDRESS", + "fields": [ + { + "category": "ADDRESS", + "dataType": "SELECTION", + "isEditable": true, + "fieldSelectionOptions": [ + { + "label": "Afghanistan", + "value": "AF" + }, + { + "label": "\u00c5land Islands", + "value": "AX" + }, + { + "label": "Albania", + "value": "AL" + }, + { + "label": "Algeria", + "value": "DZ" + }, + { + "label": "American Samoa", + "value": "AS" + }, + { + "label": "Andorra", + "value": "AD" + }, + { + "label": "Angola", + "value": "AO" + }, + { + "label": "Anguilla", + "value": "AI" + }, + { + "label": "Antarctica", + "value": "AQ" + }, + { + "label": "Antigua and Barbuda", + "value": "AG" + }, + { + "label": "Argentina", + "value": "AR" + }, + { + "label": "Armenia", + "value": "AM" + }, + { + "label": "Aruba", + "value": "AW" + }, + { + "label": "Australia", + "value": "AU" + }, + { + "label": "Austria", + "value": "AT" + }, + { + "label": "Azerbaijan", + "value": "AZ" + }, + { + "label": "Bahamas", + "value": "BS" + }, + { + "label": "Bahrain", + "value": "BH" + }, + { + "label": "Bangladesh", + "value": "BD" + }, + { + "label": "Barbados", + "value": "BB" + }, + { + "label": "Belgium", + "value": "BE" + }, + { + "label": "Belize", + "value": "BZ" + }, + { + "label": "Benin", + "value": "BJ" + }, + { + "label": "Bermuda", + "value": "BM" + }, + { + "label": "Bhutan", + "value": "BT" + }, + { + "label": "Bolivia", + "value": "BO" + }, + { + "label": "Caribbean Netherlands", + "value": "BQ" + }, + { + "label": "Bosnia and Herzegovina", + "value": "BA" + }, + { + "label": "Botswana", + "value": "BW" + }, + { + "label": "Bouvet Island", + "value": "BV" + }, + { + "label": "Brazil", + "value": "BR" + }, + { + "label": "British Indian Ocean Territory", + "value": "IO" + }, + { + "label": "Brunei", + "value": "BN" + }, + { + "label": "Bulgaria", + "value": "BG" + }, + { + "label": "Burkina Faso", + "value": "BF" + }, + { + "label": "Burundi", + "value": "BI" + }, + { + "label": "Cambodia", + "value": "KH" + }, + { + "label": "Cameroon", + "value": "CM" + }, + { + "label": "Canada", + "value": "CA" + }, + { + "label": "Cape Verde", + "value": "CV" + }, + { + "label": "Cayman Islands", + "value": "KY" + }, + { + "label": "Chad", + "value": "TD" + }, + { + "label": "Chile", + "value": "CL" + }, + { + "label": "China", + "value": "CN" + }, + { + "label": "Christmas Island", + "value": "CX" + }, + { + "label": "Cocos [Keeling] Islands", + "value": "CC" + }, + { + "label": "Colombia", + "value": "CO" + }, + { + "label": "Comoros", + "value": "KM" + }, + { + "label": "Congo - Brazzaville", + "value": "CG" + }, + { + "label": "Cook Islands", + "value": "CK" + }, + { + "label": "Costa Rica", + "value": "CR" + }, + { + "label": "C\u00f4te d\u2019Ivoire", + "value": "CI" + }, + { + "label": "Croatia", + "value": "HR" + }, + { + "label": "Cura\u00e7ao", + "value": "CW" + }, + { + "label": "Cyprus", + "value": "CY" + }, + { + "label": "Czech Republic", + "value": "CZ" + }, + { + "label": "Denmark", + "value": "DK" + }, + { + "label": "Djibouti", + "value": "DJ" + }, + { + "label": "Dominica", + "value": "DM" + }, + { + "label": "Dominican Republic", + "value": "DO" + }, + { + "label": "Timor-Leste", + "value": "TL" + }, + { + "label": "Ecuador", + "value": "EC" + }, + { + "label": "Egypt", + "value": "EG" + }, + { + "label": "El Salvador", + "value": "SV" + }, + { + "label": "Equatorial Guinea", + "value": "GQ" + }, + { + "label": "Estonia", + "value": "EE" + }, + { + "label": "Ethiopia", + "value": "ET" + }, + { + "label": "Falkland Islands", + "value": "FK" + }, + { + "label": "Faroe Islands", + "value": "FO" + }, + { + "label": "Fiji", + "value": "FJ" + }, + { + "label": "Finland", + "value": "FI" + }, + { + "label": "France", + "value": "FR" + }, + { + "label": "French Guiana", + "value": "GF" + }, + { + "label": "French Polynesia", + "value": "PF" + }, + { + "label": "French Southern Territories", + "value": "TF" + }, + { + "label": "Gabon", + "value": "GA" + }, + { + "label": "Gambia", + "value": "GM" + }, + { + "label": "Georgia", + "value": "GE" + }, + { + "label": "Germany", + "value": "DE" + }, + { + "label": "Ghana", + "value": "GH" + }, + { + "label": "Gibraltar", + "value": "GI" + }, + { + "label": "Greece", + "value": "GR" + }, + { + "label": "Greenland", + "value": "GL" + }, + { + "label": "Grenada", + "value": "GD" + }, + { + "label": "Guadeloupe", + "value": "GP" + }, + { + "label": "Guam", + "value": "GU" + }, + { + "label": "Guatemala", + "value": "GT" + }, + { + "label": "Guernsey", + "value": "GG" + }, + { + "label": "Guinea", + "value": "GN" + }, + { + "label": "Guyana", + "value": "GY" + }, + { + "label": "Haiti", + "value": "HT" + }, + { + "label": "Heard Island and McDonald Islands", + "value": "HM" + }, + { + "label": "Honduras", + "value": "HN" + }, + { + "label": "Hong Kong SAR China", + "value": "HK" + }, + { + "label": "Hungary", + "value": "HU" + }, + { + "label": "Iceland", + "value": "IS" + }, + { + "label": "India", + "value": "IN" + }, + { + "label": "Indonesia", + "value": "ID" + }, + { + "label": "Ireland", + "value": "IE" + }, + { + "label": "Isle of Man", + "value": "IM" + }, + { + "label": "Israel", + "value": "IL" + }, + { + "label": "Italy", + "value": "IT" + }, + { + "label": "Jamaica", + "value": "JM" + }, + { + "label": "Japan", + "value": "JP" + }, + { + "label": "Jersey", + "value": "JE" + }, + { + "label": "Jordan", + "value": "JO" + }, + { + "label": "Kazakhstan", + "value": "KZ" + }, + { + "label": "Kenya", + "value": "KE" + }, + { + "label": "Kiribati", + "value": "KI" + }, + { + "label": "South Korea", + "value": "KR" + }, + { + "label": "Kosovo", + "value": "XK" + }, + { + "label": "Kuwait", + "value": "KW" + }, + { + "label": "Kyrgyzstan", + "value": "KG" + }, + { + "label": "Laos", + "value": "LA" + }, + { + "label": "Latvia", + "value": "LV" + }, + { + "label": "Lesotho", + "value": "LS" + }, + { + "label": "Liechtenstein", + "value": "LI" + }, + { + "label": "Lithuania", + "value": "LT" + }, + { + "label": "Luxembourg", + "value": "LU" + }, + { + "label": "Macau SAR China", + "value": "MO" + }, + { + "label": "Macedonia", + "value": "MK" + }, + { + "label": "Madagascar", + "value": "MG" + }, + { + "label": "Malawi", + "value": "MW" + }, + { + "label": "Malaysia", + "value": "MY" + }, + { + "label": "Maldives", + "value": "MV" + }, + { + "label": "Mali", + "value": "ML" + }, + { + "label": "Malta", + "value": "MT" + }, + { + "label": "Marshall Islands", + "value": "MH" + }, + { + "label": "Martinique", + "value": "MQ" + }, + { + "label": "Mauritania", + "value": "MR" + }, + { + "label": "Mauritius", + "value": "MU" + }, + { + "label": "Mayotte", + "value": "YT" + }, + { + "label": "Mexico", + "value": "MX" + }, + { + "label": "Micronesia", + "value": "FM" + }, + { + "label": "Moldova", + "value": "MD" + }, + { + "label": "Monaco", + "value": "MC" + }, + { + "label": "Mongolia", + "value": "MN" + }, + { + "label": "Montenegro", + "value": "ME" + }, + { + "label": "Montserrat", + "value": "MS" + }, + { + "label": "Morocco", + "value": "MA" + }, + { + "label": "Mozambique", + "value": "MZ" + }, + { + "label": "Namibia", + "value": "NA" + }, + { + "label": "Nauru", + "value": "NR" + }, + { + "label": "Nepal", + "value": "NP" + }, + { + "label": "Netherlands", + "value": "NL" + }, + { + "label": "Netherlands Antilles", + "value": "AN" + }, + { + "label": "New Caledonia", + "value": "NC" + }, + { + "label": "New Zealand", + "value": "NZ" + }, + { + "label": "Nicaragua", + "value": "NI" + }, + { + "label": "Niger", + "value": "NE" + }, + { + "label": "Nigeria", + "value": "NG" + }, + { + "label": "Niue", + "value": "NU" + }, + { + "label": "Norfolk Island", + "value": "NF" + }, + { + "label": "Northern Mariana Islands", + "value": "MP" + }, + { + "label": "Norway", + "value": "NO" + }, + { + "label": "Oman", + "value": "OM" + }, + { + "label": "Pakistan", + "value": "PK" + }, + { + "label": "Palau", + "value": "PW" + }, + { + "label": "Palestinian Territories", + "value": "PS" + }, + { + "label": "Panama", + "value": "PA" + }, + { + "label": "Papua New Guinea", + "value": "PG" + }, + { + "label": "Paraguay", + "value": "PY" + }, + { + "label": "Peru", + "value": "PE" + }, + { + "label": "Philippines", + "value": "PH" + }, + { + "label": "Pitcairn Islands", + "value": "PN" + }, + { + "label": "Poland", + "value": "PL" + }, + { + "label": "Portugal", + "value": "PT" + }, + { + "label": "Puerto Rico", + "value": "PR" + }, + { + "label": "Qatar", + "value": "QA" + }, + { + "label": "R\u00e9union", + "value": "RE" + }, + { + "label": "Romania", + "value": "RO" + }, + { + "label": "Russia", + "value": "RU" + }, + { + "label": "Rwanda", + "value": "RW" + }, + { + "label": "Saint Kitts and Nevis", + "value": "KN" + }, + { + "label": "Saint Lucia", + "value": "LC" + }, + { + "label": "Saint Martin", + "value": "MF" + }, + { + "label": "Saint Vincent and the Grenadines", + "value": "VC" + }, + { + "label": "Samoa", + "value": "WS" + }, + { + "label": "San Marino", + "value": "SM" + }, + { + "label": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", + "value": "ST" + }, + { + "label": "Saudi Arabia", + "value": "SA" + }, + { + "label": "Senegal", + "value": "SN" + }, + { + "label": "Serbia", + "value": "RS" + }, + { + "label": "Seychelles", + "value": "SC" + }, + { + "label": "Sierra Leone", + "value": "SL" + }, + { + "label": "Singapore", + "value": "SG" + }, + { + "label": "Sint Maarten", + "value": "SX" + }, + { + "label": "Slovakia", + "value": "SK" + }, + { + "label": "Slovenia", + "value": "SI" + }, + { + "label": "Solomon Islands", + "value": "SB" + }, + { + "label": "South Africa", + "value": "ZA" + }, + { + "label": "South Georgia and the South Sandwich Islands", + "value": "GS" + }, + { + "label": "South Sudan", + "value": "SS" + }, + { + "label": "Spain", + "value": "ES" + }, + { + "label": "Sri Lanka", + "value": "LK" + }, + { + "label": "Saint Barth\u00e9lemy", + "value": "BL" + }, + { + "label": "Saint Helena", + "value": "SH" + }, + { + "label": "Saint Pierre and Miquelon", + "value": "PM" + }, + { + "label": "Suriname", + "value": "SR" + }, + { + "label": "Svalbard and Jan Mayen", + "value": "SJ" + }, + { + "label": "Swaziland", + "value": "SZ" + }, + { + "label": "Sweden", + "value": "SE" + }, + { + "label": "Switzerland", + "value": "CH" + }, + { + "label": "Taiwan", + "value": "TW" + }, + { + "label": "Tajikistan", + "value": "TJ" + }, + { + "label": "Tanzania", + "value": "TZ" + }, + { + "label": "Thailand", + "value": "TH" + }, + { + "label": "Togo", + "value": "TG" + }, + { + "label": "Tokelau", + "value": "TK" + }, + { + "label": "Tonga", + "value": "TO" + }, + { + "label": "Trinidad and Tobago", + "value": "TT" + }, + { + "label": "Tunisia", + "value": "TN" + }, + { + "label": "Turkey", + "value": "TR" + }, + { + "label": "Turkmenistan", + "value": "TM" + }, + { + "label": "Turks and Caicos Islands", + "value": "TC" + }, + { + "label": "Tuvalu", + "value": "TV" + }, + { + "label": "Uganda", + "value": "UG" + }, + { + "label": "Ukraine", + "value": "UA" + }, + { + "label": "United Arab Emirates", + "value": "AE" + }, + { + "label": "United Kingdom", + "value": "GB" + }, + { + "label": "United States", + "value": "US" + }, + { + "label": "U.S. Outlying Islands", + "value": "UM" + }, + { + "label": "Uruguay", + "value": "UY" + }, + { + "label": "Uzbekistan", + "value": "UZ" + }, + { + "label": "Vanuatu", + "value": "VU" + }, + { + "label": "Vatican City", + "value": "VA" + }, + { + "label": "Venezuela", + "value": "VE" + }, + { + "label": "Vietnam", + "value": "VN" + }, + { + "label": "British Virgin Islands", + "value": "VG" + }, + { + "label": "U.S. Virgin Islands", + "value": "VI" + }, + { + "label": "Wallis and Futuna", + "value": "WF" + }, + { + "label": "Western Sahara", + "value": "EH" + }, + { + "label": "Zambia", + "value": "ZM" + } + ], + "label": "Country", + "name": "country", + "placeholder": "", + "isRequired": true, + "value": "CA", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "State\/Province", + "name": "stateProvince", + "placeholder": "", + "regularExpression": "^$||[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": false, + "value": "BC", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Street", + "name": "addressLine1", + "placeholder": "", + "regularExpression": "^$||[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": true, + "value": "950 Granville Street", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "City", + "name": "city", + "placeholder": "", + "regularExpression": "^$||[(\\p{L}\\p{M}*)\\p{Z}\\p{S}\\p{N}\\p{P}\\p{C}]+", + "isRequired": true, + "value": "Vancouver", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + }, + { + "category": "ADDRESS", + "dataType": "TEXT", + "isEditable": true, + "label": "Zip\/Postal Code", + "name": "postalCode", + "placeholder": "", + "regularExpression": "^$||[\\p{Nd}\\p{L}\\p{Z}-]+", + "isRequired": false, + "value": "V6Z1L2", + "validationMessage": { + "length": "", + "pattern": "is invalid length or format.", + "empty": "You must provide a value for this field" + } + } + ] + } + ] + } + } + ] + }, + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "value": "0.25", + "feeRateType": "FLAT" + } + ] + } + } +} \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_fields_response.json b/ui/src/test/resources/successful_tmc_fields_response.json deleted file mode 100644 index 0bdcb2874..000000000 --- a/ui/src/test/resources/successful_tmc_fields_response.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "data": { - "transferMethodUIConfigurations": { - "count": 1, - "nodes": [ - { - "country": "US", - "currency": "USD", - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "fieldGroups": { - "nodes": [ - { - "group": "ACCOUNT_INFORMATION", - "fields": [ - { - "category": "ACCOUNT", - "dataType": "NUMBER", - "isRequired": true, - "isEditable": true, - "name": "branchId", - "label": "Routing Number", - "placeholder": "", - "regularExpression": "^[0-9]{9}$", - "validationMessage": { - "length": "The exact length of this field is 9.", - "pattern": "is invalid length or format.", - "empty": "You must provide a value for this field" - } - }, - { - "category": "ACCOUNT", - "dataType": "NUMBER", - "isRequired": true, - "isEditable": true, - "name": "bankAccountId", - "label": "Account Number", - "placeholder": "", - "regularExpression": "^(?![0-]+$)[0-9-]{4,17}$", - "validationMessage": { - "length": "The minimum length of this field is 4 and maximum length is 17.", - "pattern": "is invalid length or format.", - "empty": "You must provide a value for this field" - } - }, - { - "category": "ACCOUNT", - "dataType": "SELECTION", - "isRequired": true, - "isEditable": true, - "name": "bankAccountPurpose", - "label": "Account Type", - "placeholder": "", - "fieldSelectionOptions": [ - { - "label": "CHECKING", - "value": "CHECKING" - }, - { - "label": "SAVINGS", - "value": "SAVINGS" - } - ], - "validationMessage": { - "length": "", - "pattern": "is invalid length or format.", - "empty": "You must provide a value for this field" - } - } - ] - } - ] - } - } - ] - }, - "fees": { - "nodes": [ - { - "value": "5.00", - "feeRateType": "FLAT" - }, - { - "value": "2.00", - "feeRateType": "FLAT" - } - ] - } - } -} \ No newline at end of file diff --git a/ui/src/test/resources/successful_tmc_keys_empty_fee_response.json b/ui/src/test/resources/successful_tmc_keys_empty_fee_response.json index be5130ac0..435561fa5 100644 --- a/ui/src/test/resources/successful_tmc_keys_empty_fee_response.json +++ b/ui/src/test/resources/successful_tmc_keys_empty_fee_response.json @@ -1,28 +1,27 @@ { "data": { - "transferMethodConfigurations": { + "countries": { "nodes": [ { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days" - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days" + "code": "US", + "name": "United States", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "United States Dollar", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "processingTime": "1-2 Business days" + } + ] + } + } + ] + } } ] } diff --git a/ui/src/test/resources/successful_tmc_keys_empty_processing_response.json b/ui/src/test/resources/successful_tmc_keys_empty_processing_response.json index bd458cfb0..63f4dcab4 100644 --- a/ui/src/test/resources/successful_tmc_keys_empty_processing_response.json +++ b/ui/src/test/resources/successful_tmc_keys_empty_processing_response.json @@ -1,45 +1,34 @@ { "data": { - "transferMethodConfigurations": { + "countries": { "nodes": [ { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "fees": { + "code": "US", + "name": "United States", + "currencies": { "nodes": [ { - "transferMethodType": "BANK_ACCOUNT", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" + "code": "USD", + "name": "United States Dollar", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_ACCOUNT", + "value": "2.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } } ] } diff --git a/ui/src/test/resources/successful_tmc_keys_large_response.json b/ui/src/test/resources/successful_tmc_keys_large_response.json index 0e657d2c6..fb158bdbe 100644 --- a/ui/src/test/resources/successful_tmc_keys_large_response.json +++ b/ui/src/test/resources/successful_tmc_keys_large_response.json @@ -1,11217 +1,7035 @@ { "data": { - "transferMethodConfigurations": { + "countries": { "nodes": [ { - "countries": [ - "AR" - ], - "currencies": [ - "ARS" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AR", - "currency": "ARS", - "feeRateType": "FLAT", - "value": "52.34" - } - ] - } - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "ARS" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AR", - "currency": "ARS", - "feeRateType": "FLAT", - "value": "52.34" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GB", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "1.20" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GB", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "1.20" - } - ] - } - }, - { - "countries": [ - "BD" - ], - "currencies": [ - "BDT" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BD", - "currency": "BDT", - "feeRateType": "FLAT", - "value": "1.00" - } - ] - } - }, - { - "countries": [ - "BD" - ], - "currencies": [ - "BDT" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BD", - "currency": "BDT", - "feeRateType": "FLAT", - "value": "1.00" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "BRL" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BR", - "currency": "BRL", - "feeRateType": "FLAT", - "value": "5.00" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "BRL" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BR", - "currency": "BRL", - "feeRateType": "FLAT", - "value": "5.00" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CA", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CA", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "CAD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CA", - "currency": "CAD", - "feeRateType": "FLAT", - "value": "2.20" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "CAD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CA", - "currency": "CAD", - "feeRateType": "FLAT", - "value": "2.20" - } - ] - } - }, - { - "countries": [ - "MX" - ], - "currencies": [ - "MXN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MX", - "currency": "MXN", - "feeRateType": "FLAT", - "value": "26.15" - } - ] - } - }, - { - "countries": [ - "MX" - ], - "currencies": [ - "MXN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MX", - "currency": "MXN", - "feeRateType": "FLAT", - "value": "26.15" - } - ] - } - }, - { - "countries": [ - "CL" - ], - "currencies": [ - "CLP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CL", - "currency": "CLP", - "feeRateType": "FLAT", - "value": "0.01" - } - ] - } - }, - { - "countries": [ - "CL" - ], - "currencies": [ - "CLP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CL", - "currency": "CLP", - "feeRateType": "FLAT", - "value": "0.01" - } - ] - } - }, - { - "countries": [ - "CN" - ], - "currencies": [ - "CNY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CN", - "currency": "CNY", - "feeRateType": "FLAT", - "value": "12.50" - } - ] - } - }, - { - "countries": [ - "CN" - ], - "currencies": [ - "CNY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CN", - "currency": "CNY", - "feeRateType": "FLAT", - "value": "12.50" - } - ] - } - }, - { - "countries": [ - "CO" - ], - "currencies": [ - "COP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CO", - "currency": "COP", - "feeRateType": "FLAT", - "value": "9000.00" - } - ] - } - }, - { - "countries": [ - "CO" - ], - "currencies": [ - "COP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CO", - "currency": "COP", - "feeRateType": "FLAT", - "value": "9000.00" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "PR" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PR", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "PR" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PR", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "AS" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AS", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "AS" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AS", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "MP" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MP", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "MP" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MP", - "currency": "USD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "IN" - ], - "currencies": [ - "INR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IN", - "currency": "INR", - "feeRateType": "FLAT", - "value": "121.95" - } - ] - } - }, - { - "countries": [ - "IN" - ], - "currencies": [ - "INR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IN", - "currency": "INR", - "feeRateType": "FLAT", - "value": "121.95" - } - ] - } - }, - { - "countries": [ - "ID" - ], - "currencies": [ - "IDR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ID", - "currency": "IDR", - "feeRateType": "FLAT", - "value": "234.00" - } - ] - } - }, - { - "countries": [ - "ID" - ], - "currencies": [ - "IDR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ID", - "currency": "IDR", - "feeRateType": "FLAT", - "value": "234.00" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "ILS" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IL", - "currency": "ILS", - "feeRateType": "FLAT", - "value": "7.00" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "ILS" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IL", - "currency": "ILS", - "feeRateType": "FLAT", - "value": "7.00" - } - ] - } - }, - { - "countries": [ - "JM" - ], - "currencies": [ - "JMD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "JM", - "currency": "JMD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "JM" - ], - "currencies": [ - "JMD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "JM", - "currency": "JMD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "JPY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "JP", - "currency": "JPY", - "feeRateType": "FLAT", - "value": "2.05" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "JPY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "JP", - "currency": "JPY", - "feeRateType": "FLAT", - "value": "2.05" - } - ] - } - }, - { - "countries": [ - "MY" - ], - "currencies": [ - "MYR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MY", - "currency": "MYR", - "feeRateType": "FLAT", - "value": "6.50" - } - ] - } - }, - { - "countries": [ - "MY" - ], - "currencies": [ - "MYR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MY", - "currency": "MYR", - "feeRateType": "FLAT", - "value": "6.50" - } - ] - } - }, - { - "countries": [ - "MA" - ], - "currencies": [ - "MAD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MA", - "currency": "MAD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "MA" - ], - "currencies": [ - "MAD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MA", - "currency": "MAD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "NP" - ], - "currencies": [ - "NPR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NP", - "currency": "NPR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "NP" - ], - "currencies": [ - "NPR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NP", - "currency": "NPR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "NG" - ], - "currencies": [ - "NGN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NG", - "currency": "NGN", - "feeRateType": "FLAT", - "value": "324.00" - } - ] - } - }, - { - "countries": [ - "NG" - ], - "currencies": [ - "NGN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NG", - "currency": "NGN", - "feeRateType": "FLAT", - "value": "324.00" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "PKR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PK", - "currency": "PKR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "PKR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PK", - "currency": "PKR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "AUD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AU", - "currency": "AUD", - "feeRateType": "FLAT", - "value": "2.15" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "AUD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AU", - "currency": "AUD", - "feeRateType": "FLAT", - "value": "2.15" - } - ] - } - }, - { - "countries": [ - "HK" - ], - "currencies": [ - "HKD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "HK", - "currency": "HKD", - "feeRateType": "FLAT", - "value": "15.50" - } - ] - } - }, - { - "countries": [ - "HK" - ], - "currencies": [ - "HKD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "HK", - "currency": "HKD", - "feeRateType": "FLAT", - "value": "15.50" - } - ] - } - }, - { - "countries": [ - "NZ" - ], - "currencies": [ - "NZD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NZ", - "currency": "NZD", - "feeRateType": "FLAT", - "value": "2.35" - } - ] - } - }, - { - "countries": [ - "NZ" - ], - "currencies": [ - "NZD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NZ", - "currency": "NZD", - "feeRateType": "FLAT", - "value": "2.35" - } - ] - } - }, - { - "countries": [ - "SG" - ], - "currencies": [ - "SGD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SG", - "currency": "SGD", - "feeRateType": "FLAT", - "value": "2.50" - } - ] - } - }, - { - "countries": [ - "SG" - ], - "currencies": [ - "SGD" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SG", - "currency": "SGD", - "feeRateType": "FLAT", - "value": "2.50" - } - ] - } - }, - { - "countries": [ - "PE" - ], - "currencies": [ - "PEN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PE", - "currency": "PEN", - "feeRateType": "FLAT", - "value": "6.00" - } - ] - } - }, - { - "countries": [ - "PE" - ], - "currencies": [ - "PEN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PE", - "currency": "PEN", - "feeRateType": "FLAT", - "value": "6.00" - } - ] - } - }, - { - "countries": [ - "PH" - ], - "currencies": [ - "PHP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PH", - "currency": "PHP", - "feeRateType": "FLAT", - "value": "14.00" - } - ] - } - }, - { - "countries": [ - "PH" - ], - "currencies": [ - "PHP" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PH", - "currency": "PHP", - "feeRateType": "FLAT", - "value": "14.00" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "PLN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PL", - "currency": "PLN", - "feeRateType": "FLAT", - "value": "6.30" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "PLN" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PL", - "currency": "PLN", - "feeRateType": "FLAT", - "value": "6.30" - } - ] - } - }, - { - "countries": [ - "RU" - ], - "currencies": [ - "RUB" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "RU", - "currency": "RUB", - "feeRateType": "FLAT", - "value": "72.50" - } - ] - } - }, - { - "countries": [ - "RU" - ], - "currencies": [ - "RUB" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "RU", - "currency": "RUB", - "feeRateType": "FLAT", - "value": "72.50" - } - ] - } - }, - { - "countries": [ - "ZA" - ], - "currencies": [ - "ZAR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ZA", - "currency": "ZAR", - "feeRateType": "FLAT", - "value": "21.20" - } - ] - } - }, - { - "countries": [ - "ZA" - ], - "currencies": [ - "ZAR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ZA", - "currency": "ZAR", - "feeRateType": "FLAT", - "value": "21.20" - } - ] - } - }, - { - "countries": [ - "LK" - ], - "currencies": [ - "LKR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LK", - "currency": "LKR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "LK" - ], - "currencies": [ - "LKR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LK", - "currency": "LKR", - "feeRateType": "FLAT", - "value": "0.00" - } - ] - } - }, - { - "countries": [ - "TH" - ], - "currencies": [ - "THB" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TH", - "currency": "THB", - "feeRateType": "FLAT", - "value": "64.00" - } - ] - } - }, - { - "countries": [ - "TH" - ], - "currencies": [ - "THB" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TH", - "currency": "THB", - "feeRateType": "FLAT", - "value": "64.00" - } - ] - } - }, - { - "countries": [ - "TN" - ], - "currencies": [ - "TND" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TN", - "currency": "TND", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "TN" - ], - "currencies": [ - "TND" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TN", - "currency": "TND", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "TRY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TR", - "currency": "TRY", - "feeRateType": "FLAT", - "value": "4.50" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "TRY" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "TR", - "currency": "TRY", - "feeRateType": "FLAT", - "value": "4.50" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "AED" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AE", - "currency": "AED", - "feeRateType": "FLAT", - "value": "7.50" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "AED" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AE", - "currency": "AED", - "feeRateType": "FLAT", - "value": "7.50" - } - ] - } - }, - { - "countries": [ - "VN" - ], - "currencies": [ - "VND" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "VN", - "currency": "VND", - "feeRateType": "FLAT", - "value": "42360.00" - } - ] - } - }, - { - "countries": [ - "VN" - ], - "currencies": [ - "VND" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "VN", - "currency": "VND", - "feeRateType": "FLAT", - "value": "42360.00" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "SEK" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SE", - "currency": "SEK", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "SEK" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SE", - "currency": "SEK", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "NOK" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NO", - "currency": "NOK", - "feeRateType": "FLAT", - "value": "13.00" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "NOK" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-4 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NO", - "currency": "NOK", - "feeRateType": "FLAT", - "value": "13.00" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "RON" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL" - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "RON" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS" - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "CHF" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL" - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "CHF" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS" - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "CHF" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL" - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "CHF" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS" - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "AT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "DK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "DK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "DE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "DE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GB", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GB", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ES", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "ES", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "FR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "FR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "PL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "NO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CY", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CY", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "CZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "EE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "EE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "FI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "FI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BG", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "BG", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "HU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "HU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LV", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LV", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "GI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "IE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "MC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "LI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "RO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "RO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SM", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "BANK_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-3 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_ACCOUNT", - "country": "SM", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "1.50" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_CARD", - "profile": "INDIVIDUAL", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_CARD", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "1.75" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "BANK_CARD", - "profile": "BUSINESS", - "fees": { - "nodes": [ - { - "transferMethodType": "BANK_CARD", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "1.75" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "CAD", - "USD" - ], - "transferMethodType": "PAPER_CHECK", - "profile": "INDIVIDUAL", - "processingTime": "5-7 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "PAPER_CHECK", - "country": "CA", - "currency": "CAD", - "feeRateType": "FLAT", - "value": "1.00" - } - ] - } - }, - { - "countries": [ - "CA" - ], - "currencies": [ - "CAD", - "USD" - ], - "transferMethodType": "PAPER_CHECK", - "profile": "BUSINESS", - "processingTime": "5-7 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "PAPER_CHECK", - "country": "CA", - "currency": "CAD", - "feeRateType": "FLAT", - "value": "1.00" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "PAPER_CHECK", - "profile": "INDIVIDUAL", - "processingTime": "5-7 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "PAPER_CHECK", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "PAPER_CHECK", - "profile": "BUSINESS", - "processingTime": "5-7 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "PAPER_CHECK", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "AUD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AU", - "currency": "AUD", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "AUD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AU", - "currency": "AUD", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "RSD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "RSD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "RSD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "RSD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "KZT" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "KZT", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "KZT" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "KZT", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "AM" - ], - "currencies": [ - "AMD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "4-6 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AM", - "currency": "AMD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "AM" - ], - "currencies": [ - "AMD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "4-6 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AM", - "currency": "AMD", - "feeRateType": "FLAT", - "value": "2.00" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "GBP", - "AUD", - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "US", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "US" - ], - "currencies": [ - "GBP", - "AUD", - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "US", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RU" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RU" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EG" - ], - "currencies": [ - "GBP", - "EGP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EG", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EG" - ], - "currencies": [ - "GBP", - "EGP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EG", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "USD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "3-5 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "USD", - "feeRateType": "FLAT", - "value": "20.00" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "GBP", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AU" - ], - "currencies": [ - "GBP", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PT", - "PW", - "PY", - "QA", - "AD", - "AF", - "AG", - "AI", - "AL", - "AM", - "AN", - "AQ", - "AR", - "AS", - "RE", - "AT", - "AW", - "AZ", - "RO", - "BA", - "BB", - "RS", - "BD", - "BE", - "BF", - "RW", - "BG", - "BH", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BQ", - "SC", - "BR", - "BS", - "SE", - "BT", - "SG", - "BV", - "SH", - "BW", - "SI", - "SJ", - "SK", - "BZ", - "SM", - "SN", - "CA", - "SR", - "CC", - "ST", - "SV", - "SX", - "CH", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "CR", - "TD", - "TF", - "TG", - "CV", - "TH", - "CW", - "CX", - "TJ", - "CY", - "TK", - "CZ", - "TL", - "TM", - "TO", - "TR", - "TT", - "DE", - "TV", - "TW", - "TZ", - "DJ", - "DK", - "DM", - "DO", - "UA", - "UG", - "DZ", - "UM", - "EC", - "EE", - "EH", - "UY", - "UZ", - "VA", - "VC", - "ES", - "VE", - "ET", - "VG", - "VI", - "VN", - "VU", - "FI", - "FJ", - "FK", - "FM", - "FO", - "FR", - "WF", - "GA", - "GB", - "WS", - "GD", - "GE", - "GF", - "GH", - "GI", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GR", - "GS", - "GT", - "GU", - "GY", - "HK", - "HM", - "HN", - "HR", - "HT", - "HU", - "YT", - "ID", - "IE", - "IL", - "IM", - "IN", - "IO", - "ZA", - "IS", - "IT", - "ZM", - "JE", - "JM", - "JO", - "JP", - "KG", - "KH", - "KI", - "KN", - "KR", - "KW", - "KY", - "KZ", - "LA", - "LC", - "LI", - "LK", - "LS", - "LT", - "LU", - "LV", - "MA", - "MC", - "MD", - "ME", - "MF", - "MG", - "MH", - "MK", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MR", - "MS", - "MT", - "MU", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NF", - "NG", - "NI", - "NL", - "NO", - "NP", - "NR", - "NU", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PK", - "PL", - "PM", - "PN" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PT", - "PW", - "PY", - "QA", - "AD", - "AF", - "AG", - "AI", - "AL", - "AM", - "AN", - "AQ", - "AR", - "AS", - "RE", - "AT", - "AW", - "AZ", - "RO", - "BA", - "BB", - "RS", - "BD", - "BE", - "BF", - "RW", - "BG", - "BH", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BQ", - "SC", - "BR", - "BS", - "SE", - "BT", - "SG", - "BV", - "SH", - "BW", - "SI", - "SJ", - "SK", - "BZ", - "SM", - "SN", - "CA", - "SR", - "CC", - "ST", - "SV", - "SX", - "CH", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "CR", - "TD", - "TF", - "TG", - "CV", - "TH", - "CW", - "CX", - "TJ", - "CY", - "TK", - "CZ", - "TL", - "TM", - "TO", - "TR", - "TT", - "DE", - "TV", - "TW", - "TZ", - "DJ", - "DK", - "DM", - "DO", - "UA", - "UG", - "DZ", - "UM", - "EC", - "EE", - "EH", - "UY", - "UZ", - "VA", - "VC", - "ES", - "VE", - "ET", - "VG", - "VI", - "VN", - "VU", - "FI", - "FJ", - "FK", - "FM", - "FO", - "FR", - "WF", - "GA", - "GB", - "WS", - "GD", - "GE", - "GF", - "GH", - "GI", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GR", - "GS", - "GT", - "GU", - "GY", - "HK", - "HM", - "HN", - "HR", - "HT", - "HU", - "YT", - "ID", - "IE", - "IL", - "IM", - "IN", - "IO", - "ZA", - "IS", - "IT", - "ZM", - "JE", - "JM", - "JO", - "JP", - "KG", - "KH", - "KI", - "KN", - "KR", - "KW", - "KY", - "KZ", - "LA", - "LC", - "LI", - "LK", - "LS", - "LT", - "LU", - "LV", - "MA", - "MC", - "MD", - "ME", - "MF", - "MG", - "MH", - "MK", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MR", - "MS", - "MT", - "MU", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NF", - "NG", - "NI", - "NL", - "NO", - "NP", - "NR", - "NU", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PK", - "PL", - "PM", - "PN" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KE" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "KES", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KE" - ], - "currencies": [ - "GBP", - "AUD", - "EUR", - "KES", - "USD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "JPY" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "JPY" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "JOD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "JOD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "ZA" - ], - "currencies": [ - "ZAR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "ZA" - ], - "currencies": [ - "ZAR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "AED" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "AED" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "KR" - ], - "currencies": [ - "KRW" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "KR" - ], - "currencies": [ - "KRW" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "TW" - ], - "currencies": [ - "TWD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "TW" - ], - "currencies": [ - "TWD" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "PKR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "PKR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "ARS" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "ARS" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "KH" - ], - "currencies": [ - "KHR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "KH" - ], - "currencies": [ - "KHR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "LK" - ], - "currencies": [ - "LKR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "LK" - ], - "currencies": [ - "LKR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "2-3 Business days" - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "ALL" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "ALL" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "NP" - ], - "currencies": [ - "NPR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "11-13 Business days" - }, - { - "countries": [ - "NP" - ], - "currencies": [ - "NPR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "11-13 Business days" - }, - { - "countries": [ - "CO" - ], - "currencies": [ - "COP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "4-6 Business days" - }, - { - "countries": [ - "CO" - ], - "currencies": [ - "COP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "4-6 Business days" - }, - { - "countries": [ - "LA" - ], - "currencies": [ - "LAK" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "LA" - ], - "currencies": [ - "LAK" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "6-8 Business days" - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JP", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JP", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JP", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JP" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JP", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "XK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days" - }, - { - "countries": [ - "XK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days" - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LV", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LV", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BH" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BH", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BG", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BG", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ME" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ME", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ME" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ME", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GB", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GB", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GI", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AD" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AD", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AD" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AD", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MD" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MD", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MD" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MD", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SK", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ES", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ES", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SE", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ST" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ST", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ST" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ST", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IS", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "TR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "TR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SM", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SM", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AZ" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AZ", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CY", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CY", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PL", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "QA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "QA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "QA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "QA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "UA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "UA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "UA" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "UA", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JO", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KW" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KW", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KW" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KW", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MU" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MU", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MT", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LC" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LC", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "NL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "NL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "EE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "EE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "XK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days" - }, - { - "countries": [ - "XK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days" - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LV", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LV" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LV", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CH", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CH" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CH", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BH" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BH", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BH" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BH", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BG", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BG" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BG", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ME" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ME", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ME" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ME", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RS" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RS", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GB", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GB" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GB", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GI" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GI", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AD" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AD", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AD" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AD", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MD" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MD", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MD" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MD", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "RO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "RO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SK" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SK", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ES", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ES" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ES", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SE" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SE", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ST" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ST", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "ST" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "ST", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IS", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IS" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IS", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "TR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "TR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "TR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "FR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "FR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "IT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "IT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SM", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SM" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SM", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "DO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "DO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "AZ" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "AZ", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CY", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "CY" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "CY", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "GT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "GT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "HU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "HU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PL" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PL", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "BR" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "BR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "QA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "QA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "QA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "QA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "UA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "UA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "UA" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "UA", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "JO" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "JO", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KW" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KW", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "KW" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "KW", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MU" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MU", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "MT" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "MT", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "SC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "SC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "LC" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "LC", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PW", - "PY", - "AF", - "AG", - "AI", - "AM", - "AS", - "RE", - "AU", - "AW", - "BB", - "BD", - "RU", - "BF", - "RW", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BS", - "BT", - "SG", - "BW", - "SH", - "BZ", - "SN", - "CA", - "SR", - "SV", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "TD", - "CV", - "TG", - "CW", - "TH", - "TJ", - "TL", - "TM", - "TO", - "TT", - "TV", - "TW", - "DJ", - "TZ", - "DM", - "UG", - "EC", - "US", - "UY", - "UZ", - "VA", - "VC", - "ET", - "VE", - "VG", - "VI", - "VN", - "VU", - "FJ", - "FK", - "FM", - "FO", - "WF", - "GA", - "WS", - "GD", - "GF", - "GG", - "GH", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GU", - "HK", - "HN", - "HT", - "ID", - "YT", - "IM", - "IN", - "ZA", - "ZM", - "JE", - "JM", - "KE", - "KG", - "KH", - "KI", - "KN", - "KR", - "KY", - "LA", - "LK", - "LS", - "MA", - "MG", - "MH", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MS", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NG", - "NI", - "NP", - "NR", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PM" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PW", - "PY", - "AF", - "AG", - "AI", - "AM", - "AS", - "RE", - "AU", - "AW", - "BB", - "BD", - "RU", - "BF", - "RW", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BS", - "BT", - "SG", - "BW", - "SH", - "BZ", - "SN", - "CA", - "SR", - "SV", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "TD", - "CV", - "TG", - "CW", - "TH", - "TJ", - "TL", - "TM", - "TO", - "TT", - "TV", - "TW", - "DJ", - "TZ", - "DM", - "UG", - "EC", - "US", - "UY", - "UZ", - "VA", - "VC", - "ET", - "VE", - "VG", - "VI", - "VN", - "VU", - "FJ", - "FK", - "FM", - "FO", - "WF", - "GA", - "WS", - "GD", - "GF", - "GG", - "GH", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GU", - "HK", - "HN", - "HT", - "ID", - "YT", - "IM", - "IN", - "ZA", - "ZM", - "JE", - "JM", - "KE", - "KG", - "KH", - "KI", - "KN", - "KR", - "KY", - "LA", - "LK", - "LS", - "MA", - "MG", - "MH", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MS", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NG", - "NI", - "NP", - "NR", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PM" - ], - "currencies": [ - "GBP" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "GBP", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PW", - "PY", - "AF", - "AG", - "AI", - "AM", - "AS", - "RE", - "AU", - "AW", - "BB", - "BD", - "RU", - "BF", - "RW", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BS", - "BT", - "SG", - "BW", - "SH", - "BZ", - "SN", - "CA", - "SR", - "SV", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "TD", - "CV", - "TG", - "CW", - "TH", - "TJ", - "TL", - "TM", - "TO", - "TT", - "TV", - "TW", - "DJ", - "TZ", - "DM", - "UG", - "EC", - "US", - "UY", - "UZ", - "VA", - "VC", - "ET", - "VE", - "VG", - "VI", - "VN", - "VU", - "FJ", - "FK", - "FM", - "FO", - "WF", - "GA", - "WS", - "GD", - "GF", - "GG", - "GH", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GU", - "HK", - "HN", - "HT", - "ID", - "YT", - "IM", - "IN", - "ZA", - "ZM", - "JE", - "JM", - "KE", - "KG", - "KH", - "KI", - "KN", - "KR", - "KY", - "LA", - "LK", - "LS", - "MA", - "MG", - "MH", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MS", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NG", - "NI", - "NP", - "NR", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - } - }, - { - "countries": [ - "PR", - "PW", - "PY", - "AF", - "AG", - "AI", - "AM", - "AS", - "RE", - "AU", - "AW", - "BB", - "BD", - "RU", - "BF", - "RW", - "BI", - "BJ", - "BM", - "BN", - "BO", - "SB", - "BS", - "BT", - "SG", - "BW", - "SH", - "BZ", - "SN", - "CA", - "SR", - "SV", - "SZ", - "CK", - "CL", - "CM", - "CN", - "CO", - "TC", - "TD", - "CV", - "TG", - "CW", - "TH", - "TJ", - "TL", - "TM", - "TO", - "TT", - "TV", - "TW", - "DJ", - "TZ", - "DM", - "UG", - "EC", - "US", - "UY", - "UZ", - "VA", - "VC", - "ET", - "VE", - "VG", - "VI", - "VN", - "VU", - "FJ", - "FK", - "FM", - "FO", - "WF", - "GA", - "WS", - "GD", - "GF", - "GG", - "GH", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GU", - "HK", - "HN", - "HT", - "ID", - "YT", - "IM", - "IN", - "ZA", - "ZM", - "JE", - "JM", - "KE", - "KG", - "KH", - "KI", - "KN", - "KR", - "KY", - "LA", - "LK", - "LS", - "MA", - "MG", - "MH", - "ML", - "MN", - "MO", - "MP", - "MQ", - "MS", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NG", - "NI", - "NP", - "NR", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PM" - ], - "currencies": [ - "EUR" - ], - "transferMethodType": "WIRE_ACCOUNT", - "profile": "BUSINESS", - "processingTime": "1-2 Business days", - "fees": { - "nodes": [ - { - "transferMethodType": "WIRE_ACCOUNT", - "country": "PR", - "currency": "EUR", - "feeRateType": "FLAT", - "value": "0.25" + "code": "AF", + "name": "AFGHANISTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AL", + "name": "ALBANIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DZ", + "name": "ALGERIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AS", + "name": "AMERICAN SAMOA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AD", + "name": "ANDORRA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AD", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AI", + "name": "ANGUILLA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AQ", + "name": "ANTARCTICA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AQ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AG", + "name": "ANTIGUA AND BARBUDA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AR", + "name": "ARGENTINA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AM", + "name": "ARMENIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AW", + "name": "ARUBA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AU", + "name": "AUSTRALIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AT", + "name": "AUSTRIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AZ", + "name": "AZERBAIJAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BS", + "name": "BAHAMAS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BH", + "name": "BAHRAIN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BD", + "name": "BANGLADESH", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BD", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BB", + "name": "BARBADOS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BB", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BE", + "name": "BELGIUM", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BZ", + "name": "BELIZE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BJ", + "name": "BENIN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BJ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BM", + "name": "BERMUDA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BT", + "name": "BHUTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BO", + "name": "BOLIVIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BA", + "name": "BOSNIA AND HERZEGOWINA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BW", + "name": "BOTSWANA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BV", + "name": "BOUVET ISLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BR", + "name": "BRAZIL", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IO", + "name": "BRITISH INDIAN OCEAN TERRITORY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BN", + "name": "BRUNEI DARUSSALAM", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BG", + "name": "BULGARIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BF", + "name": "BURKINA FASO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BI", + "name": "BURUNDI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "BQ", + "name": "Bonaire, Sint Eustatius and Saba", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "BQ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KH", + "name": "CAMBODIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CM", + "name": "CAMEROON", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CA", + "name": "CANADA", + "currencies": { + "nodes": [ + { + "code": "CAD", + "name": "CAD", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "CAD", + "transferMethodType": "BANK_ACCOUNT", + "value": "2.20", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "CAD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "USD", + "transferMethodType": "BANK_ACCOUNT", + "value": "2.00", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "USD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CV", + "name": "CAPE VERDE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KY", + "name": "CAYMAN ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TD", + "name": "CHAD", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TD", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CL", + "name": "CHILE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CN", + "name": "CHINA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CX", + "name": "CHRISTMAS ISLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CX", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CC", + "name": "COCOS (KEELING) ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CO", + "name": "COLOMBIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CK", + "name": "COOK ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CR", + "name": "COSTA RICA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HR", + "name": "CROATIA (local name: Hrvatska)", + "currencies": { + "nodes": [ + { + "code": "EUR", + "name": "EUR", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "HR", + "currency": "EUR", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.50", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "HRK", + "name": "HRK", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "HR", + "currency": "HRK", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.50", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CW", + "name": "CURACAO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CY", + "name": "CYPRUS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CZ", + "name": "CZECH REPUBLIC", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DK", + "name": "DENMARK", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DJ", + "name": "DJIBOUTI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DJ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DM", + "name": "DOMINICA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DO", + "name": "DOMINICAN REPUBLIC", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TL", + "name": "EAST TIMOR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "EC", + "name": "ECUADOR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "EC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SV", + "name": "EL SALVADOR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GQ", + "name": "EQUATORIAL GUINEA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GQ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "EE", + "name": "ESTONIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "EE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ET", + "name": "ETHIOPIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ET", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FK", + "name": "FALKLAND ISLANDS (MALVINAS)", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FO", + "name": "FAROE ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FJ", + "name": "FIJI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FJ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FI", + "name": "FINLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FR", + "name": "FRANCE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GF", + "name": "FRENCH GUIANA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PF", + "name": "FRENCH POLYNESIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TF", + "name": "FRENCH SOUTHERN TERRITORIES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GA", + "name": "GABON", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GM", + "name": "GAMBIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GE", + "name": "GEORGIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "DE", + "name": "GERMANY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "DE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GH", + "name": "GHANA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GI", + "name": "GIBRALTAR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GR", + "name": "GREECE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GL", + "name": "GREENLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GD", + "name": "GRENADA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GD", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GP", + "name": "GUADELOUPE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GP", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GU", + "name": "GUAM", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GT", + "name": "GUATEMALA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GN", + "name": "GUINEA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GY", + "name": "GUYANA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HT", + "name": "HAITI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HM", + "name": "HEARD AND MC DONALD ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HN", + "name": "HONDURAS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HK", + "name": "HONG KONG", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "HU", + "name": "HUNGARY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "HU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IS", + "name": "ICELAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IN", + "name": "INDIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ID", + "name": "INDONESIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ID", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IE", + "name": "IRELAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IM", + "name": "ISLE OF MAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IL", + "name": "ISRAEL", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "IT", + "name": "ITALY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "IT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "JM", + "name": "JAMAICA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "JM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "JP", + "name": "JAPAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "JP", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "JE", + "name": "JERSEY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "JE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "JO", + "name": "JORDAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "JO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KZ", + "name": "KAZAKHSTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KE", + "name": "KENYA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KI", + "name": "KIRIBATI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KR", + "name": "KOREA, REPUBLIC OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KW", + "name": "KUWAIT", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KG", + "name": "KYRGYZSTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LA", + "name": "LAO PEOPLES DEMOCRATIC REPUBLIC", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LV", + "name": "LATVIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LS", + "name": "LESOTHO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LI", + "name": "LIECHTENSTEIN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LT", + "name": "LITHUANIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LU", + "name": "LUXEMBOURG", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MO", + "name": "MACAU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MK", + "name": "MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MG", + "name": "MADAGASCAR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MW", + "name": "MALAWI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MY", + "name": "MALAYSIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MV", + "name": "MALDIVES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ML", + "name": "MALI", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ML", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MT", + "name": "MALTA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MH", + "name": "MARSHALL ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MQ", + "name": "MARTINIQUE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MQ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MR", + "name": "MAURITANIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MU", + "name": "MAURITIUS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "YT", + "name": "MAYOTTE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "YT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MX", + "name": "MEXICO", + "currencies": { + "nodes": [ + { + "code": "MXN", + "name": "MXN", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "MX", + "currency": "MXN", + "transferMethodType": "BANK_ACCOUNT", + "value": "26.15", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MX", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "FM", + "name": "MICRONESIA, FEDERATED STATES OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "FM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MD", + "name": "MOLDOVA, REPUBLIC OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MD", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MC", + "name": "MONACO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MN", + "name": "MONGOLIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ME", + "name": "MONTEGEGRO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ME", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MS", + "name": "MONTSERRAT", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MA", + "name": "MOROCCO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MZ", + "name": "MOZAMBIQUE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NA", + "name": "NAMIBIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NR", + "name": "NAURU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NP", + "name": "NEPAL", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NP", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NL", + "name": "NETHERLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AN", + "name": "NETHERLANDS ANTILLES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NC", + "name": "NEW CALEDONIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NZ", + "name": "NEW ZEALAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NI", + "name": "NICARAGUA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NE", + "name": "NIGER", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NG", + "name": "NIGERIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NU", + "name": "NIUE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NF", + "name": "NORFOLK ISLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MP", + "name": "NORTHERN MARIANA ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MP", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "NO", + "name": "NORWAY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "NO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "OM", + "name": "OMAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "OM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PK", + "name": "PAKISTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PW", + "name": "PALAU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PA", + "name": "PANAMA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PG", + "name": "PAPUA NEW GUINEA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PY", + "name": "PARAGUAY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PE", + "name": "PERU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PH", + "name": "PHILIPPINES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PN", + "name": "PITCAIRN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PL", + "name": "POLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PL", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PT", + "name": "PORTUGAL", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PR", + "name": "PUERTO RICO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "QA", + "name": "QATAR", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "QA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "RE", + "name": "REUNION", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "RE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "RO", + "name": "ROMANIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "RO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "RU", + "name": "RUSSIAN FEDERATION", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "RU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "RW", + "name": "RWANDA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "RW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "KN", + "name": "SAINT KITTS AND NEVIS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "KN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LC", + "name": "SAINT LUCIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "MF", + "name": "SAINT MARTIN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "MF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VC", + "name": "SAINT VINCENT AND THE GRENADINES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "WS", + "name": "SAMOA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "WS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SM", + "name": "SAN MARINO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ST", + "name": "SAO TOME AND PRINCIPE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ST", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SN", + "name": "SENEGAL", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "RS", + "name": "SERBIA, REPUBLIC OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "RS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SC", + "name": "SEYCHELLES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SG", + "name": "SINGAPORE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SK", + "name": "SLOVAKIA (Slovak Republic)", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SI", + "name": "SLOVENIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SB", + "name": "SOLOMON ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SB", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ZA", + "name": "SOUTH AFRICA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ZA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GS", + "name": "SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GS", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ES", + "name": "SPAIN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ES", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "LK", + "name": "SRI LANKA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "LK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SH", + "name": "ST. HELENA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "PM", + "name": "ST. PIERRE AND MIQUELON", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "PM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SR", + "name": "SURINAME", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SJ", + "name": "SVALBARD AND JAN MAYEN ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SJ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SZ", + "name": "SWAZILAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SE", + "name": "SWEDEN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "CH", + "name": "SWITZERLAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "CH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "SX", + "name": "Sint Maarten", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "SX", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TW", + "name": "TAIWAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TW", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TJ", + "name": "TAJIKISTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TJ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TZ", + "name": "TANZANIA, UNITED REPUBLIC OF", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TH", + "name": "THAILAND", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TG", + "name": "TOGO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TK", + "name": "TOKELAU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TK", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TO", + "name": "TONGA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TO", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TT", + "name": "TRINIDAD AND TOBAGO", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TT", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TR", + "name": "TURKEY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TR", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TM", + "name": "TURKMENISTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TC", + "name": "TURKS AND CAICOS ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TC", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "TV", + "name": "TUVALU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "TV", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "UG", + "name": "UGANDA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "UG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "UA", + "name": "UKRAINE", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "UA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "AE", + "name": "UNITED ARAB EMIRATES", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "AE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "GB", + "name": "UNITED KINGDOM", + "currencies": { + "nodes": [ + { + "code": "EUR", + "name": "EUR", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "GB", + "currency": "EUR", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.50", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "GBP", + "name": "GBP", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "GB", + "currency": "GBP", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.20", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "HRK", + "name": "HRK", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "GB", + "currency": "HRK", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.50", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "GB", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "US", + "name": "United States", + "currencies": { + "nodes": [ + { + "code": "CAD", + "name": "CAD", + "transferMethodTypes": { + "nodes": [ + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "CAD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + }, + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_ACCOUNT", + "value": "2.00", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "BANK_CARD", + "name": "Debit Card", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_CARD", + "value": "1.75", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "UY", + "name": "URUGUAY", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "UY", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "UZ", + "name": "UZBEKISTAN", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "UZ", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VU", + "name": "VANUATU", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VU", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VA", + "name": "VATICAN CITY STATE (HOLY SEE)", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VA", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VE", + "name": "VENEZUELA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VE", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VN", + "name": "VIETNAM", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VN", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VG", + "name": "VIRGIN ISLANDS (BRITISH)", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VG", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "VI", + "name": "VIRGIN ISLANDS (U.S.)", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "VI", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "WF", + "name": "WALLIS AND FUTUNA ISLANDS", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "WF", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "EH", + "name": "WESTERN SAHARA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "EH", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "ZM", + "name": "ZAMBIA", + "currencies": { + "nodes": [ + { + "code": "USD", + "name": "USD", + "transferMethodTypes": { + "nodes": [ + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "fees": { + "nodes": [ + { + "country": "ZM", + "currency": "USD", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + } + ] + } } ] } diff --git a/ui/src/test/resources/successful_tmc_keys_response.json b/ui/src/test/resources/successful_tmc_keys_response.json index b47ab5426..f4e9eb831 100644 --- a/ui/src/test/resources/successful_tmc_keys_response.json +++ b/ui/src/test/resources/successful_tmc_keys_response.json @@ -4,22 +4,41 @@ "nodes": [ { "code": "CA", - "name": "CANADA", + "name": "Canada", "currencies": { "nodes": [ { "code": "CAD", - "name": "CAD", + "name": "Canadian Dollar", "transferMethodTypes": { "nodes": [ { "code": "BANK_ACCOUNT", "name": "Bank Account", + "processingTime": "1-2 Business days", "fees": { "nodes": [ { + "country": "CA", + "currency": "CAD", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", + "value": "2.20", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "processingTime": "IMMEDIATE", + "fees": { + "nodes": [ + { + "country": "CA", + "currency": "CAD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", "feeRateType": "FLAT" } ] @@ -30,63 +49,108 @@ }, { "code": "USD", - "name": "USD", + "name": "United States Dollar", "transferMethodTypes": { "nodes": [ { "code": "BANK_ACCOUNT", "name": "Bank Account", + "processingTime": "1-2 Business days", "fees": { "nodes": [ { - "transferMethodType": "BANK_CARD", - "value": "2.00", - "feeRateType": "FLAT" - }, - { - "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", - "feeRateType": "FLAT" - }, - { + "country": "CA", + "currency": "USD", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", - "feeRateType": "FLAT" - }, - { - "transferMethodType": "PAYPAL_ACCOUNT", - "value": "0.25", + "value": "2.00", "feeRateType": "FLAT" } ] } - }, + } + ] + } + } + ] + } + }, + { + "code": "HR", + "name": "Croatia", + "currencies": { + "nodes": [ + { + "code": "EUR", + "name": "Euro", + "transferMethodTypes": { + "nodes": [ { - "code": "BANK_CARD", - "name": "Debit Card", + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "processingTime": "2-3 Business days", "fees": { "nodes": [ { + "country": "HR", + "currency": "EUR", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", + "value": "1.50", "feeRateType": "FLAT" - }, + } + ] + } + } + ] + } + }, + { + "code": "HRK", + "name": "Croatian Kuna", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "processingTime": "1-2 Business days", + "fees": { + "nodes": [ { + "country": "HR", + "currency": "HRK", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", + "value": "1.50", "feeRateType": "FLAT" } ] } - }, + } + ] + } + } + ] + } + }, + { + "code": "MX", + "name": "Mexico", + "currencies": { + "nodes": [ + { + "code": "MXN", + "name": "Mexican Peso", + "transferMethodTypes": { + "nodes": [ { - "code": "PAYPAL_ACCOUNT", - "name": "PayPal Account", + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "processingTime": "1-2 Business days", "fees": { "nodes": [ { - "transferMethodType": "BANK_CARD", - "value": "2.00", + "country": "MX", + "currency": "MXN", + "transferMethodType": "BANK_ACCOUNT", + "value": "26.15", "feeRateType": "FLAT" } ] @@ -99,24 +163,26 @@ } }, { - "code": "US", - "name": "UNITED STATES", + "code": "GB", + "name": "United Kingdom", "currencies": { "nodes": [ { - "code": "CAD", - "name": "CAD", + "code": "EUR", + "name": "Euro", "transferMethodTypes": { "nodes": [ { "code": "BANK_ACCOUNT", "name": "Bank Account", - "processingTime": "1-3", + "processingTime": "2-4 Business days", "fees": { "nodes": [ { + "country": "GB", + "currency": "EUR", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", + "value": "1.50", "feeRateType": "FLAT" } ] @@ -125,20 +191,102 @@ ] } }, + { + "code": "GBP", + "name": "British Pound", + "transferMethodTypes": { + "nodes": [ + { + "code": "BANK_ACCOUNT", + "name": "Bank Account", + "processingTime": "1-2 Business days", + "fees": { + "nodes": [ + { + "country": "GB", + "currency": "GBP", + "transferMethodType": "BANK_ACCOUNT", + "value": "1.20", + "feeRateType": "FLAT" + } + ] + } + } + ] + } + } + ] + } + }, + { + "code": "US", + "name": "United States", + "currencies": { + "nodes": [ { "code": "USD", - "name": "USD", + "name": "United States Dollar", "transferMethodTypes": { "nodes": [ { "code": "BANK_ACCOUNT", "name": "Bank Account", - "processingTime": "1-3", + "processingTime": "1-2 Business days", "fees": { "nodes": [ { + "country": "US", + "currency": "USD", "transferMethodType": "BANK_ACCOUNT", - "value": "5.00", + "value": "2.00", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "BANK_CARD", + "name": "Debit Card", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "BANK_CARD", + "value": "1.75", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "WIRE_ACCOUNT", + "name": "Wire Transfer", + "processingTime": "1-3 Business days", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "processingTime": "1-3 Business days", + "transferMethodType": "WIRE_ACCOUNT", + "value": "20.00", + "feeRateType": "FLAT" + } + ] + } + }, + { + "code": "PAYPAL_ACCOUNT", + "name": "PayPal Account", + "processingTime": "IMMEDIATE", + "fees": { + "nodes": [ + { + "country": "US", + "currency": "USD", + "transferMethodType": "PAYPAL_ACCOUNT", + "value": "0.25", "feeRateType": "FLAT" } ] diff --git a/ui/src/test/resources/successful_tmc_paypal_fields_response.json b/ui/src/test/resources/successful_tmc_paypal_fields_response.json deleted file mode 100644 index 06ec0fe45..000000000 --- a/ui/src/test/resources/successful_tmc_paypal_fields_response.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "data": { - "transferMethodConfigurations": { - "nodes": [ - { - "countries": [ - "US" - ], - "currencies": [ - "USD" - ], - "transferMethodType": "PAYPAL_ACCOUNT", - "profile": "INDIVIDUAL", - "processingTime": "IMMEDIATE", - "fees": { - "nodes": [ - { - "transferMethodType": "PAYPAL_ACCOUNT", - "country": "US", - "currency": "USD", - "feeRateType": "FLAT", - "value": "0.25" - } - ] - }, - "fields": [ - { - "category": "ACCOUNT", - "dataType": "TEXT", - "isRequired": true, - "label": "Email", - "name": "email", - "placeholder": "", - "regularExpression": "^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$", - "validationMessage": { - "length": "", - "pattern": "accountNumber is invalid", - "empty": "You must provide a value for this field" - } - } - ] - } - ] - } - } -} \ No newline at end of file