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

28 lines
399 B
PHP

<?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
* @return string
*/
public function getRecipient_name() {
return $this->recipient_name;
}
}