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/Link.php

60 lines
750 B
PHP

<?php
namespace PayPal\Api;
/**
*
*/
class Link extends Resource {
/**
* Setter for href
* @param string $href
*/
public function setHref($href) {
$this->href = $href;
}
/**
* Getter for href
* @return string
*/
public function getHref() {
return $this->href;
}
/**
* Setter for rel
* @param string $rel
*/
public function setRel($rel) {
$this->rel = $rel;
}
/**
* Getter for rel
* @return string
*/
public function getRel() {
return $this->rel;
}
/**
* Setter for method
* @param string $method
*/
public function setMethod($method) {
$this->method = $method;
}
/**
* Getter for method
* @return string
*/
public function getMethod() {
return $this->method;
}
}