Update a Card

After the card is created, you can update the Card expiry date and/or make the Card a default one.

CreditCardRequest cardReq = new CreditCardRequest()
    .expiryMonth(12)
    .expiryYear(2016)
    .settings()
        .makeDefault(true)
    .done();

CreditCard card = gateway.creditCard().update("card_uid", "customer_uid", cardReq);