本番環境でクレジットカードの決済を行う場合、クレジットカード会社の審査に通る必要があります。審査が通り利用可能になったブランドの一覧を取得する方法です。また、テスト環境の場合はすべてのブランドが表示されます。
WebPayClient client = new WebPayClient("test_secret_**********************"); Account account = client.account.retrieve(); //[Visa, American Express, MasterCard, JCB, Diners Club] List<String> supported = account.getCardTypesSupported();