Fix isEqual to include more data

This commit is contained in:
David Estes 2021-02-09 13:55:29 -08:00
parent 5a0c6d7e61
commit 41455b3448
1 changed files with 3 additions and 1 deletions

View File

@ -113,6 +113,8 @@ public class STPPaymentMethodCardParams: NSObject, STPFormEncodable {
return number == other?.number &&
expMonth == other?.expMonth &&
expYear == other?.expYear &&
cvc == other?.cvc
cvc == other?.cvc &&
token == other?.token &&
additionalAPIParameters == other?.additionalAPIParameters
}
}