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/ShippingAddress.php
2014-03-28 20:34:07 +05:30

48 lines
934 B
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
class ShippingAddress extends Address {
/**
* Name of the recipient at this address.
*
* @param string $recipient_name
*/
public function setRecipientName($recipient_name) {
$this->recipient_name = $recipient_name;
return $this;
}
/**
* Name of the recipient at this address.
*
* @return string
*/
public function getRecipientName() {
return $this->recipient_name;
}
/**
* Name of the recipient at this address.
*
* @param string $recipient_name
* @deprecated. Instead use setRecipientName
*/
public function setRecipient_name($recipient_name) {
$this->recipient_name = $recipient_name;
return $this;
}
/**
* Name of the recipient at this address.
*
* @return string
* @deprecated. Instead use getRecipientName
*/
public function getRecipient_name() {
return $this->recipient_name;
}
}