This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/FundingInstrument.php
2013-03-06 18:42:06 +05:30

42 lines
709 B
PHP

<?php
namespace PayPal\Api;
/**
*
*/
class FundingInstrument extends Resource {
/**
* Setter for credit_card
* @param PayPal\Api\CreditCard $credit_card
*/
public function setCredit_card($credit_card) {
$this->credit_card = $credit_card;
}
/**
* Getter for credit_card
*/
public function getCredit_card() {
return $this->credit_card;
}
/**
* Setter for credit_card_token
* @param PayPal\Api\CreditCardToken $credit_card_token
*/
public function setCredit_card_token($credit_card_token) {
$this->credit_card_token = $credit_card_token;
}
/**
* Getter for credit_card_token
*/
public function getCredit_card_token() {
return $this->credit_card_token;
}
}