Proper changes to samples for Credit Card

This commit is contained in:
mrak and sdcoffey
2016-10-25 17:40:37 -05:00
parent 7b380a1447
commit 7c5ea8b997
7 changed files with 14 additions and 11 deletions

View File

@@ -33,6 +33,7 @@ $paymentCard->setType("visa")
->setCvv2("012")
->setFirstName("Joe")
->setLastName("Shopper")
->setBillingCountry("US")
->setBillingAddress($addr);
$fi = new FundingInstrument();

View File

@@ -29,7 +29,8 @@ $card->setType("visa")
->setExpireYear("2019")
->setCvv2("012")
->setFirstName("Joe")
->setLastName("Shopper");
->setLastName("Shopper")
->setBillingCountry("US");
// ### FundingInstrument
// A resource representing a Payer's funding instrument.