We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, currently one can access IBAN object contained in FinancialAddress:
var iban = financialAddress.getIban(); var bic = iban.getBic();
However, if I want to access ABA fields eg. account_number, routing_number and etc. I still have to get those fields from the json object:
JsonArray financialAdresses = paymentIntent.getRawJsonObject() .getAsJsonObject("next_action") .getAsJsonObject("display_bank_transfer_instructions") .getAsJsonArray("financial_addresses"); JsonObject aba = financialAdresses.get(0).getAsJsonObject();
It would be great to access ABA object and its fields in the same way as IBAN:
var aba = financialAddress.getAba(); var accountNumber = aba.getAccountNumber();
No response
The text was updated successfully, but these errors were encountered:
@dansharky Thanks for the report! It's on our list to add support for it, we'll circle back on this issue once it's done but it might take a while
Sorry, something went wrong.
remi-stripe
No branches or pull requests
Is your feature request related to a problem? Please describe.
Hello,
currently one can access IBAN object contained in FinancialAddress:
However, if I want to access ABA fields eg. account_number, routing_number and etc.
I still have to get those fields from the json object:
Describe the solution you'd like
It would be great to access ABA object and its fields in the same way as IBAN:
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: