Initial commit

This commit is contained in:
aydiv
2013-03-06 18:42:06 +05:30
commit 69cb3c4dcb
101 changed files with 6222 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
namespace PayPal\Api;
/**
*
*/
class CreditCardToken extends Resource {
/**
* Setter for credit_card_id
* @param string $credit_card_id
*/
public function setCredit_card_id($credit_card_id) {
$this->credit_card_id = $credit_card_id;
}
/**
* Getter for credit_card_id
*/
public function getCredit_card_id() {
return $this->credit_card_id;
}
/**
* Setter for payer_id
* @param string $payer_id
*/
public function setPayer_id($payer_id) {
$this->payer_id = $payer_id;
}
/**
* Getter for payer_id
*/
public function getPayer_id() {
return $this->payer_id;
}
}