Closed batistadasilva closed 1 year ago
Hello everybody
The class method MangoPay::BankingAliasesIBAN.url currently uses a bad syntax, which causes an error.
MangoPay::BankingAliasesIBAN.url
The super keyword in Ruby calls the superclass method. In this case, it returns a String.
super
String
super.url(id) leads to the following error
super.url(id)
NoMethodError: undefined method `url' for "/v2.01/sdk-unit-tests/bankingaliases/163665005":String
Any news on this patch?
Hello everybody
The class method
MangoPay::BankingAliasesIBAN.url
currently uses a bad syntax, which causes an error.The
super
keyword in Ruby calls the superclass method. In this case, it returns aString
.super.url(id)
leads to the following error