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,27 @@
<?php
namespace PayPal\Api;
/**
*
*/
class ShippingAddress extends Address {
/**
* Setter for recipient_name
* @param string $recipient_name
*/
public function setRecipient_name($recipient_name) {
$this->recipient_name = $recipient_name;
}
/**
* Getter for recipient_name
*/
public function getRecipient_name() {
return $this->recipient_name;
}
}