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
Hey folks!
I found a little bug with BankInfoResponse type.
The property IsSameBankAccountOwner is typed as String, but payment.Client.Get returns a bool, and then unmarshal fails.
IsSameBankAccountOwner
String
Simply changed the property type to bool to fix it.
bool
The text was updated successfully, but these errors were encountered:
@jonathastavares thanks for your report! I'm working on the solution.
Sorry, something went wrong.
Hello @jonathastavares, the fix was released in v1.0.5. Thank you!
v1.0.5
andreagostinho-meli
Successfully merging a pull request may close this issue.
Hey folks!
I found a little bug with BankInfoResponse type.
The property
IsSameBankAccountOwner
is typed asString
, but payment.Client.Get returns a bool, and then unmarshal fails.Simply changed the property type to
bool
to fix it.The text was updated successfully, but these errors were encountered: