Closed gitviola closed 9 years ago
I can't access the iban and bic by doing:
payment.iban or payment.bic
payment.iban
payment.bic
But it works for all other information: payment.account payment.last4, ...
payment.account
payment.last4
Instead I currently solved the problem by using payment.instance_variable_get(:@iban)
payment.instance_variable_get(:@iban)
I can't access the iban and bic by doing:
payment.iban
orpayment.bic
But it works for all other information:
payment.account
payment.last4
, ...Instead I currently solved the problem by using
payment.instance_variable_get(:@iban)