updated stubs

This commit is contained in:
Ganesh Hegde
2013-05-27 11:53:45 +05:30
parent 5b32783208
commit 11f91adee4
28 changed files with 1744 additions and 1567 deletions

View File

@@ -1,28 +1,22 @@
<?php
<?php
namespace PayPal\Api;
/**
*
*/
class ShippingAddress extends Address {
/**
* Setter for recipient_name
* Name of the recipient at this address.
* @param string $recipient_name
*/
public function setRecipient_name($recipient_name) {
*/
public function setRecipientName($recipient_name) {
$this->recipient_name = $recipient_name;
}
}
/**
* Getter for recipient_name
* Name of the recipient at this address.
* @return string
*/
public function getRecipient_name() {
*/
public function getRecipientName() {
return $this->recipient_name;
}
}
}