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

129 lines
1.5 KiB
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
class Links extends PPModel {
/**
*
*
* @param string $href
*/
public function setHref($href) {
$this->href = $href;
return $this;
}
/**
*
*
* @return string
*/
public function getHref() {
return $this->href;
}
/**
*
*
* @param string $rel
*/
public function setRel($rel) {
$this->rel = $rel;
return $this;
}
/**
*
*
* @return string
*/
public function getRel() {
return $this->rel;
}
/**
*
*
* @param PayPal\Api\HyperSchema $targetSchema
*/
public function setTargetSchema($targetSchema) {
$this->targetSchema = $targetSchema;
return $this;
}
/**
*
*
* @return PayPal\Api\HyperSchema
*/
public function getTargetSchema() {
return $this->targetSchema;
}
/**
*
*
* @param string $method
*/
public function setMethod($method) {
$this->method = $method;
return $this;
}
/**
*
*
* @return string
*/
public function getMethod() {
return $this->method;
}
/**
*
*
* @param string $enctype
*/
public function setEnctype($enctype) {
$this->enctype = $enctype;
return $this;
}
/**
*
*
* @return string
*/
public function getEnctype() {
return $this->enctype;
}
/**
*
*
* @param PayPal\Api\HyperSchema $schema
*/
public function setSchema($schema) {
$this->schema = $schema;
return $this;
}
/**
*
*
* @return PayPal\Api\HyperSchema
*/
public function getSchema() {
return $this->schema;
}
}